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/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/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_shipment_details_42847922MDD3003/shipment_details_102640.xlsx b/IWRS/Drugs/xls_shipment_details_42847922MDD3003/shipment_details_102640.xlsx new file mode 100644 index 0000000..78ebe04 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..9e22666 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_101132.xlsx b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101132.xlsx new file mode 100644 index 0000000..887cd84 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..11f7443 Binary files /dev/null and b/IWRS/Drugs/xls_shipment_details_77242113UCO3001/shipment_details_101135.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/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/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/Medidata/download_uco3001.py b/Medidata/download_uco3001.py new file mode 100644 index 0000000..cb535d8 --- /dev/null +++ b/Medidata/download_uco3001.py @@ -0,0 +1,440 @@ +""" +Stahuje Data Listing reporty (ReportID=92) pro studii UCO3001. +Použití: + download_datalisting_reports_3001("Trial Disposition (Completion / Discontinuation)") + download_datalisting_reports_3001("Trial Disposition (Completion / Discontinuation)", country="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_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/downloads/2026-05-25_10-22_EDC_UCO3001_ALL_DateofVisit_DataListing.csv b/Medidata/downloads/2026-05-25_10-22_EDC_UCO3001_ALL_DateofVisit_DataListing.csv new file mode 100644 index 0000000..a576020 --- /dev/null +++ b/Medidata/downloads/2026-05-25_10-22_EDC_UCO3001_ALL_DateofVisit_DataListing.csv @@ -0,0 +1,2927 @@ +"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" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","197447","AR100012001","6330","2974779","Screening","3","Date of Visit","32501452","0","21 Apr 2026 14:50:03:940","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 14:50:03.940","","" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","200155","AR100012002","6330","3032634","Screening","3","Date of Visit","33275074","0","27 Apr 2026 07:19:12:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 07:19:12.870","","" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","200155","AR100012002","6330","3124838","Week I-0 (1)","7","Date of Visit","34515265","0","06 May 2026 14:27:35:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","UNDEFINED A","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 14:27:35.913","","" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","201831","AR100012003","6330","3065482","Screening","3","Date of Visit","33703639","0","21 Apr 2026 14:49:32:827","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 14:49:32.827","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","2877678","Screening","3","Date of Visit","31183666","0","14 Jan 2026 19:00:57:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260114 19:00:57.123","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","2929553","Week I-0 (1)","7","Date of Visit","31858152","0","23 Feb 2026 18:20:28:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 18:20:28.097","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","2952087","Week I-2 (1)","8","Date of Visit","32190790","0","01 Apr 2026 18:58:25:203","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 18:58:25.203","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","3045838","Week I-4 (1)","9","Date of Visit","33453196","0","01 Apr 2026 19:02:58:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 19:02:58.973","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","3045846","Week I-8 (1)","10","Date of Visit","33453267","0","08 May 2026 12:09:55:333","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 12:09:55.333","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","3168116","Week I-12 (1)","11","Date of Visit","34829313","0","08 May 2026 12:17:17:733","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 12:17:17.733","","" +"ARG","9110","DD5-AR10005","CIPREC","200149","AR100052002","6330","3032523","Screening","3","Date of Visit","33274204","0","22 Apr 2026 16:24:20:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 16:24:20.010","","" +"ARG","9110","DD5-AR10005","CIPREC","200149","AR100052002","6330","3084625","Week I-0 (1)","7","Date of Visit","33997307","0","22 Apr 2026 18:01:02:833","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 18:01:02.833","","" +"ARG","9110","DD5-AR10005","CIPREC","200149","AR100052002","6330","3086083","Week I-2 (1)","8","Date of Visit","34024048","0","08 May 2026 13:52:50:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 13:52:50.090","","" +"ARG","9172","DD5-AR10006","GEDYT","191642","AR100062001","6330","2851779","Screening","3","Date of Visit","30850925","0","03 Feb 2026 16:03:17:537","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 16:03:17.537","","" +"ARG","9172","DD5-AR10006","GEDYT","194445","AR100062002","6330","2912679","Screening","3","Date of Visit","31626186","0","04 Mar 2026 17:08:37:807","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 17:08:37.807","","" +"ARG","9172","DD5-AR10006","GEDYT","194445","AR100062002","6330","2955325","Week I-0 (1)","7","Date of Visit","32244752","0","04 Mar 2026 17:09:25:247","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 17:09:25.247","","" +"ARG","9172","DD5-AR10006","GEDYT","196787","AR100062003","6330","2960887","Screening","3","Date of Visit","32327809","0","09 Apr 2026 14:14:43:060","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 14:14:43.060","","" +"ARG","9172","DD5-AR10006","GEDYT","197460","AR100062004","6330","2975084","Screening","3","Date of Visit","32505537","0","09 Apr 2026 14:16:34:067","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 14:16:34.067","","" +"ARG","9172","DD5-AR10006","GEDYT","199250","AR100062005","6330","3014098","Screening","3","Date of Visit","33040486","0","14 Apr 2026 18:55:05:577","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 18:55:05.577","","" +"ARG","9172","DD5-AR10006","GEDYT","201947","AR100062006","6330","3068209","Screening","3","Date of Visit","33747557","0","15 Apr 2026 18:30:05:820","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 18:30:05.820","","" +"ARG","9172","DD5-AR10006","GEDYT","201947","AR100062006","6330","3112328","Week I-0 (1)","7","Date of Visit","34324797","0","28 Apr 2026 12:51:28:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 12:51:28.000","","" +"ARG","9172","DD5-AR10006","GEDYT","201947","AR100062006","6330","3115300","Week I-2 (1)","8","Date of Visit","34373118","0","13 May 2026 11:40:52:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 11:40:52.563","","" +"ARG","9172","DD5-AR10006","GEDYT","211215","AR100062007","6330","3201522","Screening","3","Date of Visit","35164952","0","19 May 2026 16:29:12:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 16:29:12.187","","" +"ARG","9136","DD5-AR10007","Hospital Privado Centro Medico de Cordoba","202770","AR100072001","6330","3084944","Screening","3","Date of Visit","34001404","0","27 Apr 2026 02:15:34:190","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 02:15:34.190","","" +"ARG","9136","DD5-AR10007","Hospital Privado Centro Medico de Cordoba","204064","AR100072002","6330","3115286","Screening","3","Date of Visit","34372934","0","18 May 2026 23:47:02:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 23:47:02.787","","" +"ARG","9136","DD5-AR10007","Hospital Privado Centro Medico de Cordoba","204065","AR100072003","6330","3115299","Screening","3","Date of Visit","34373057","0","19 May 2026 00:20:28:910","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 00:20:28.910","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","2898897","Screening","3","Date of Visit","31449881","0","12 Mar 2026 11:49:08:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 11:49:08.697","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","2951421","Week I-0 (1)","7","Date of Visit","32178150","0","23 Feb 2026 20:35:16:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 20:35:16.537","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","2952238","Week I-2 (1)","8","Date of Visit","32192986","0","11 Mar 2026 18:17:21:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 18:17:21.877","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","3002306","Week I-4 (1)","9","Date of Visit","32881302","0","23 Mar 2026 13:09:26:243","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 13:09:26.243","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","3026138","Week I-8 (1)","10","Date of Visit","33190196","0","28 Apr 2026 13:11:46:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 13:11:46.890","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","3115388","Week I-12 (1)","11","Date of Visit","34373886","0","22 May 2026 13:02:30:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 13:02:30.600","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","200605","AR100092002","6330","3040702","Screening","3","Date of Visit","33382072","0","22 May 2026 13:30:12:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 13:30:12.600","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","200605","AR100092002","6330","3115004","Week I-0 (1)","7","Date of Visit","34367318","0","28 Apr 2026 13:06:21:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 13:06:21.623","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","200605","AR100092002","6330","3115338","Week I-2 (1)","8","Date of Visit","34373489","0","12 May 2026 13:41:06:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 13:41:06.230","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","204082","AR100092003","6330","3115637","Screening","3","Date of Visit","34377473","0","22 May 2026 13:18:34:667","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 13:18:34.667","","" +"ARG","9137","DD5-AR10013","Hospital Britanico de Buenos Aires","210485","AR100132001","6330","3186574","Screening","3","Date of Visit","34946352","0","11 May 2026 18:48:08:597","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 18:48:08.597","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","2908964","Screening","3","Date of Visit","31576870","0","05 Feb 2026 12:49:39:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 12:49:39.010","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","2957639","Week I-0 (1)","7","Date of Visit","32281912","0","26 Feb 2026 12:29:05:567","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 12:29:05.567","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","2960361","Week I-2 (1)","8","Date of Visit","32321007","0","11 Mar 2026 15:37:29:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 15:37:29.557","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","3001945","Week I-4 (1)","9","Date of Visit","32876500","0","30 Mar 2026 21:00:21:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 21:00:21.833","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","3041510","Week I-8 (1)","10","Date of Visit","33392509","0","22 Apr 2026 12:15:54:283","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 12:15:54.283","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","3084614","Week I-12 (1)","11","Date of Visit","33996946","0","20 May 2026 18:16:50:130","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 18:16:50.130","","" +"ARG","9111","DD5-AR10014","HIGEA","200643","AR100142002","6330","3041198","Screening","3","Date of Visit","33388438","0","01 Apr 2026 12:21:44:750","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 12:21:44.750","","" +"ARG","9111","DD5-AR10014","HIGEA","211091","AR100142003","6330","3198976","Screening","3","Date of Visit","35128513","0","18 May 2026 14:17:21:880","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 14:17:21.880","","" +"ARG","9111","DD5-AR10014","HIGEA","211346","AR100142004","6330","3204076","Screening","3","Date of Visit","35198426","0","20 May 2026 15:50:41:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 15:50:41.597","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200610","AR100181001","6330","3040739","Screening","3","Date of Visit","33382352","0","17 Apr 2026 14:57:13:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 14:57:13.813","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200610","AR100181001","6330","3112135","Week I-0 (1)","7","Date of Visit","34322287","0","01 May 2026 18:57:18:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 18:57:18.310","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200610","AR100181001","6330","3113016","Week I-2 (1)","8","Date of Visit","34334845","0","11 May 2026 13:17:24:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 13:17:24.187","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200627","AR100181002","6330","3040988","Screening","3","Date of Visit","33385584","0","01 May 2026 18:52:33:683","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 18:52:33.683","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","2898775","Screening","3","Date of Visit","31448310","0","13 Mar 2026 12:17:57:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 12:17:57.927","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","2997528","Week I-0 (1)","7","Date of Visit","32816091","0","10 Mar 2026 21:34:22:443","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 21:34:22.443","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","2997772","Week I-2 (1)","8","Date of Visit","32820818","0","27 Mar 2026 13:27:20:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 13:27:20.703","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","3038306","Week I-4 (1)","9","Date of Visit","33352977","0","07 Apr 2026 19:23:44:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 19:23:44.137","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","3052492","Week I-8 (1)","10","Date of Visit","33538566","0","09 May 2026 19:27:45:573","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260509 19:27:45.573","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","3077909","Unscheduled 20260325","59","Date of Visit","33901128","0","21 Apr 2026 21:52:46:363","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 21:52:46.363","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","3082166","Unscheduled 20260417","59","Date of Visit","33964929","0","20 May 2026 14:36:30:043","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","17 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","BLOOD AND URINE TESTS","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 14:36:30.043","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","196818","AR100202002","6330","2961484","Screening","3","Date of Visit","32333906","0","26 Feb 2026 19:56:25:667","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 19:56:25.667","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","196818","AR100202002","6330","3049674","Week I-0 (1)","7","Date of Visit","33504405","0","07 Apr 2026 19:32:07:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 19:32:07.567","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","196818","AR100202002","6330","3052497","Week I-2 (1)","8","Date of Visit","33538636","0","21 Apr 2026 22:15:55:437","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 22:15:55.437","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","196818","AR100202002","6330","3082164","Week I-4 (1)","9","Date of Visit","33964884","0","09 May 2026 19:39:48:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260509 19:39:48.830","","" +"ARG","9311","DD5-AR10021","Instituto de Investigaciones Clinicas T y T","201683","AR100212001","6330","3062226","Screening","3","Date of Visit","33659444","0","13 Apr 2026 18:54:22:183","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 18:54:22.183","","" +"ARG","9311","DD5-AR10021","Instituto de Investigaciones Clinicas T y T","201683","AR100212001","6330","3188589","Week I-0 (1)","7","Date of Visit","34977783","0","19 May 2026 00:52:15:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 00:52:15.090","","" +"ARG","9311","DD5-AR10021","Instituto de Investigaciones Clinicas T y T","205079","AR100212002","6330","3137408","Screening","3","Date of Visit","34734210","0","12 May 2026 00:46:52:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 00:46:52.890","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2864978","Screening","3","Date of Visit","31028209","0","11 Mar 2026 03:02:05:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 03:02:05.717","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2942914","Week I-0 (1)","7","Date of Visit","32064327","0","18 Feb 2026 03:46:38:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260218 03:46:38.817","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2943068","Week I-2 (1)","8","Date of Visit","32066191","0","03 Mar 2026 21:51:03:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 21:51:03.387","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2975306","Week I-4 (1)","9","Date of Visit","32508611","0","17 Mar 2026 20:42:13:287","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 20:42:13.287","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","3014790","Week I-8 (1)","10","Date of Visit","33049783","0","13 May 2026 00:39:25:970","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 00:39:25.970","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","3068600","Week I-12 (1)","11","Date of Visit","33753169","0","13 May 2026 04:47:50:007","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 04:47:50.007","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","195930","AU100012002","6330","2942932","Screening","3","Date of Visit","32064477","0","06 Mar 2026 03:37:39:667","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 03:37:39.667","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","200052","AU100012003","6330","3030578","Screening","3","Date of Visit","33248180","0","26 Mar 2026 00:12:20:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 00:12:20.587","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","200052","AU100012003","6330","3082194","Week I-0 (1)","7","Date of Visit","33965407","0","22 Apr 2026 22:45:03:133","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 22:45:03.133","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","200052","AU100012003","6330","3086262","Week I-2 (1)","8","Date of Visit","34026699","0","07 May 2026 01:36:47:067","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 01:36:47.067","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","200052","AU100012003","6330","3135600","Week I-4 (1)","9","Date of Visit","34701530","0","20 May 2026 22:54:52:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 22:54:52.857","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2702577","Screening","3","Date of Visit","29087038","0","26 Nov 2025 20:49:46:800","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251126 20:49:46.800","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2836923","Week I-0 (1)","7","Date of Visit","30652100","0","24 Dec 2025 00:10:08:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251224 00:10:08.277","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2852144","Week I-2 (1)","8","Date of Visit","30855816","0","29 Dec 2025 01:57:35:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251229 01:57:35.570","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2856083","Week I-4 (1)","9","Date of Visit","30916530","0","12 Jan 2026 03:23:08:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260112 03:23:08.563","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2871586","Week I-8 (1)","10","Date of Visit","31108757","0","13 Feb 2026 02:53:26:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 02:53:26.630","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2934050","Week I-12 (1)","11","Date of Visit","31928797","0","05 May 2026 23:50:36:970","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 23:50:36.970","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2995663","Week M-4 (1)","15","Date of Visit","32792310","0","08 Apr 2026 01:17:09:520","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 01:17:09.520","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","3052686","Week M-8 (1)","16","Date of Visit","33542096","0","06 May 2026 01:57:22:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 01:57:22.227","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","3082189","Clinical Flare 20260520","25","Date of Visit","33965231","0","20 May 2026 03:09:04:550","Tier 1","SDVTier","Yes","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 03:09:04.550","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","190113","AU100022002","6330","2817863","Screening","3","Date of Visit","30404917","0","12 Jan 2026 03:32:46:823","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260112 03:32:46.823","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","199289","AU100022003","6330","3014968","Screening","3","Date of Visit","33051601","0","01 Apr 2026 04:59:36:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 04:59:36.393","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","199289","AU100022003","6330","3096536","Week I-0 (1)","7","Date of Visit","34159585","0","27 Apr 2026 03:04:04:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 03:04:04.397","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","199289","AU100022003","6330","3097462","Week I-2 (1)","8","Date of Visit","34168191","0","11 May 2026 02:18:14:263","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 02:18:14.263","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","199289","AU100022003","6330","3169165","Week I-4 (1)","9","Date of Visit","34842576","0","25 May 2026 04:12:01:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 04:12:01.583","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","2977837","Screening","3","Date of Visit","32540640","0","11 Mar 2026 07:01:52:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 07:01:52.803","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","3068598","Week I-0 (1)","7","Date of Visit","33753121","0","19 Apr 2026 06:53:49:520","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260419 06:53:49.520","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","3075433","Week I-2 (1)","8","Date of Visit","33862970","0","06 May 2026 04:08:16:087","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT NO LONGER WISHES TO CONTINUE IN THE TRIAL","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 04:08:16.087","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","3132745","Induction Early Discontinuation (1)","12","Date of Visit","34643438","0","06 May 2026 04:09:03:677","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT NO LONGER WISHES TO COMPLETE THIS VISIT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 04:09:03.677","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","200225","AU100042002","6330","3033980","Screening","3","Date of Visit","33291319","0","31 Mar 2026 22:10:17:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 22:10:17.707","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","200225","AU100042002","6330","3169147","Week I-0 (1)","7","Date of Visit","34842377","0","13 May 2026 08:45:06:170","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 08:45:06.170","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","201969","AU100042004","6330","3068718","Screening","3","Date of Visit","33754669","0","19 Apr 2026 08:04:49:443","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260419 08:04:49.443","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","200056","AU100052001","6330","3030630","Screening","3","Date of Visit","33248604","0","25 Mar 2026 05:21:36:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 05:21:36.580","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","200056","AU100052001","6330","3082179","Week I-0 (1)","7","Date of Visit","33965112","0","22 Apr 2026 03:20:35:720","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 03:20:35.720","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","200056","AU100052001","6330","3082296","Week I-2 (1)","8","Date of Visit","33966932","0","06 May 2026 01:35:57:197","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 01:35:57.197","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","200056","AU100052001","6330","3132693","Week I-4 (1)","9","Date of Visit","34642492","0","20 May 2026 06:09:26:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 06:09:26.340","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","204107","AU100052002","6330","3116329","Screening","3","Date of Visit","34389533","0","30 Apr 2026 00:42:38:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 00:42:38.623","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","201853","AU100091001","6330","3066143","Screening","3","Date of Visit","33712106","0","15 Apr 2026 02:21:30:453","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 02:21:30.453","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","211365","AU100091002","6330","3204633","Screening","3","Date of Visit","35206099","0","21 May 2026 00:26:58:600","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 00:26:58.600","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","189868","AU100092002","6330","2813954","Screening","3","Date of Visit","30351464","0","19 Mar 2026 06:18:51:473","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 06:18:51.473","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","2921672","Screening","3","Date of Visit","31745455","0","09 Feb 2026 05:02:45:907","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 05:02:45.907","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","2977785","Week I-0 (1)","7","Date of Visit","32539732","0","05 Mar 2026 06:49:40:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 06:49:40.597","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","2978278","Week I-2 (1)","8","Date of Visit","32545920","0","19 Mar 2026 05:12:13:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 05:12:13.533","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","3017961","Week I-4 (1)","9","Date of Visit","33090890","0","02 Apr 2026 01:22:39:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 01:22:39.920","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","3046012","Week I-8 (1)","10","Date of Visit","33456230","0","27 Apr 2026 05:46:01:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 05:46:01.887","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2867234","Screening","3","Date of Visit","31056589","0","08 Jan 2026 04:41:32:140","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260108 04:41:32.140","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2907744","Week I-0 (1)","7","Date of Visit","31560586","0","02 Feb 2026 04:23:12:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 04:23:12.020","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2907913","Week I-2 (1)","8","Date of Visit","31563078","0","13 Feb 2026 04:46:08:793","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 04:46:08.793","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2934169","Week I-4 (1)","9","Date of Visit","31931055","0","04 Mar 2026 23:10:46:967","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 23:10:46.967","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2977799","Week I-8 (1)","10","Date of Visit","32540014","0","01 Apr 2026 22:03:50:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 22:03:50.957","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","3045953","Week I-12 (1)","11","Date of Visit","33455088","0","29 Apr 2026 20:53:55:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 20:53:55.817","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","2924263","Screening","3","Date of Visit","31783331","0","11 Feb 2026 22:00:29:103","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 22:00:29.103","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","2975303","Week I-0 (1)","7","Date of Visit","32508488","0","04 Mar 2026 22:55:39:520","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 22:55:39.520","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","2977798","Week I-2 (1)","8","Date of Visit","32539937","0","19 Mar 2026 21:32:46:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 21:32:46.773","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","3020567","Week I-4 (1)","9","Date of Visit","33121203","0","07 Apr 2026 05:05:27:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 05:05:27.843","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","3050687","Week I-8 (1)","10","Date of Visit","33514688","0","20 May 2026 22:24:20:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 22:24:20.050","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","211025","AU100112003","6330","3197790","Screening","3","Date of Visit","35111436","0","20 May 2026 22:51:29:623","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 22:51:29.623","","" +"AUS","9637","DD5-AU10012","John Hunter Hospital","196826","AU100122001","6330","2961649","Screening","3","Date of Visit","32336287","0","08 Apr 2026 02:09:27:483","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 02:09:27.483","","" +"AUS","9637","DD5-AU10012","John Hunter Hospital","201856","AU100122002","6330","3066180","Screening","3","Date of Visit","33712645","0","15 Apr 2026 03:45:13:493","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 03:45:13.493","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2842109","Screening","3","Date of Visit","30711755","0","19 Jan 2026 09:52:22:503","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 09:52:22.503","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2879134","Week I-0 (1)","7","Date of Visit","31202211","0","19 Jan 2026 10:28:29:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 10:28:29.877","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2884820","Week I-2 (1)","8","Date of Visit","31272133","0","27 Jan 2026 08:55:25:470","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260127 08:55:25.470","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2898153","Week I-4 (1)","9","Date of Visit","31441135","0","09 Feb 2026 10:28:48:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 10:28:48.080","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2922505","Week I-8 (1)","10","Date of Visit","31758558","0","09 Mar 2026 13:54:02:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 13:54:02.020","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2994653","Week I-12 (1)","11","Date of Visit","32778408","0","03 Apr 2026 13:02:12:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 13:02:12.337","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","3048436","Week M-4 (1)","15","Date of Visit","33489600","0","30 Apr 2026 11:23:28:373","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 11:23:28.373","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","3124651","Clinical Flare 20260427","25","Date of Visit","34512077","0","30 Apr 2026 11:44:19:217","Tier 1","SDVTier","Yes","Did this visit occur?","","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 11:44:19.217","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","196746","BE100012002","6330","2960080","Screening","3","Date of Visit","32316813","0","03 Apr 2026 13:41:43:967","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 13:41:43.967","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","204563","BE100012003","6330","3126801","Screening","3","Date of Visit","34546405","0","05 May 2026 10:51:15:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 10:51:15.397","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","211388","BE100012004","6330","3205198","Screening","3","Date of Visit","35212742","0","22 May 2026 12:18:49:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:18:49.527","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2890007","Screening","3","Date of Visit","31332359","0","21 Jan 2026 15:19:12:383","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 15:19:12.383","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2922412","Week I-0 (1)","7","Date of Visit","31757108","0","09 Feb 2026 13:32:45:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 13:32:45.640","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2923183","Week I-2 (1)","8","Date of Visit","31767128","0","23 Feb 2026 13:45:24:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 13:45:24.463","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2951508","Week I-4 (1)","9","Date of Visit","32180039","0","09 Mar 2026 13:03:17:913","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 13:03:17.913","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2994505","Week I-8 (1)","10","Date of Visit","32775821","0","11 May 2026 13:22:11:783","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","8 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 13:22:11.783","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","3185986","Induction Early Discontinuation (1)","12","Date of Visit","34935837","0","11 May 2026 13:23:11:250","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 13:23:11.250","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","3185987","Induction Safety Follow Up (1)","13","Date of Visit","34935838","0","20 May 2026 12:37:10:703","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 12:37:10.703","","" +"BEL","9616","DD5-BE10003","AZ Oostende","198692","BE100032001","6330","3001805","Screening","3","Date of Visit","32874560","0","23 Mar 2026 14:32:39:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 14:32:39.177","","" +"BEL","9616","DD5-BE10003","AZ Oostende","198692","BE100032001","6330","3058980","Week I-0 (1)","7","Date of Visit","33621459","0","10 Apr 2026 07:37:15:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 07:37:15.757","","" +"BEL","9616","DD5-BE10003","AZ Oostende","198692","BE100032001","6330","3059095","Week I-2 (1)","8","Date of Visit","33622932","0","23 Apr 2026 12:39:05:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 12:39:05.693","","" +"BEL","9616","DD5-BE10003","AZ Oostende","198692","BE100032001","6330","3088957","Week I-4 (1)","9","Date of Visit","34072276","0","05 May 2026 10:04:23:573","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 10:04:23.573","","" +"BEL","9616","DD5-BE10003","AZ Oostende","200977","BE100032002","6330","3048186","Screening","3","Date of Visit","33487107","0","03 Apr 2026 11:43:34:490","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 11:43:34.490","","" +"BEL","9616","DD5-BE10003","AZ Oostende","200977","BE100032002","6330","3132876","Week I-0 (1)","7","Date of Visit","34645488","0","06 May 2026 07:57:49:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:57:49.460","","" +"BEL","9616","DD5-BE10003","AZ Oostende","200977","BE100032002","6330","3133488","Week I-2 (1)","8","Date of Visit","34661608","0","21 May 2026 06:29:05:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 06:29:05.247","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","2931606","Screening","3","Date of Visit","31892083","0","12 Feb 2026 10:17:22:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 10:17:22.577","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","2953401","Week I-0 (1)","7","Date of Visit","32210464","0","24 Feb 2026 14:01:54:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 14:01:54.087","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","2955298","Week I-2 (1)","8","Date of Visit","32244534","0","11 Mar 2026 08:03:12:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 08:03:12.537","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","2999596","Week I-4 (1)","9","Date of Visit","32844677","0","26 Mar 2026 08:08:04:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 08:08:04.437","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","3034861","Week I-8 (1)","10","Date of Visit","33304609","0","21 Apr 2026 08:02:02:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 08:02:02.787","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","3079509","Week I-12 (1)","11","Date of Visit","33924753","0","21 May 2026 12:30:39:140","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 12:30:39.140","","" +"BEL","9627","DD5-BE10006","Ghent University Hospital","211172","BE100062001","6330","3200561","Screening","3","Date of Visit","35150352","0","19 May 2026 13:07:05:060","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 13:07:05.060","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","2960207","Screening","3","Date of Visit","32318548","0","13 Mar 2026 09:33:50:287","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 09:33:50.287","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","3011975","Week I-0 (1)","7","Date of Visit","33011882","0","18 Mar 2026 12:17:56:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 12:17:56.120","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","3016707","Week I-2 (1)","8","Date of Visit","33074391","0","31 Mar 2026 10:30:47:507","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 10:30:47.507","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","3042838","Week I-4 (1)","9","Date of Visit","33406907","0","09 Apr 2026 12:00:04:177","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 12:00:04.177","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","3057390","Week I-8 (1)","10","Date of Visit","33601343","0","08 May 2026 09:33:36:293","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 09:33:36.293","","" +"BEL","9586","DD5-BE10011","huderf","204887","BE100111001","6330","3133568","Screening","3","Date of Visit","34662833","0","20 May 2026 09:33:31:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 09:33:31.617","","" +"BRA","9168","DD5-BR10001","Pesquisare Saude","204619","BR100012001","6330","3128095","Screening","3","Date of Visit","34571838","0","04 May 2026 15:34:36:367","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 15:34:36.367","","" +"BRA","9168","DD5-BR10001","Pesquisare Saude","211122","BR100012002","6330","3199374","Screening","3","Date of Visit","35133433","0","18 May 2026 13:28:56:260","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 13:28:56.260","","" +"BRA","9168","DD5-BR10001","Pesquisare Saude","211218","BR100012003","6330","3201554","Screening","3","Date of Visit","35165318","0","19 May 2026 13:54:20:467","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 13:54:20.467","","" +"BRA","9265","DD5-BR10003","ATO Terapias","210888","BR100031001","6330","3194516","Screening","3","Date of Visit","35062015","0","14 May 2026 12:53:28:350","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 12:53:28.350","","" +"BRA","9265","DD5-BR10003","ATO Terapias","210904","BR100032001","6330","3194796","Screening","3","Date of Visit","35065941","0","14 May 2026 14:14:45:950","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 14:14:45.950","","" +"BRA","9265","DD5-BR10003","ATO Terapias","210911","BR100032002","6330","3194937","Screening","3","Date of Visit","35068080","0","14 May 2026 15:40:19:593","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 15:40:19.593","","" +"BRA","9255","DD5-BR10011","UNESP","211440","BR100112001","6330","3206278","Screening","3","Date of Visit","35226144","0","21 May 2026 11:40:18:990","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 11:40:18.990","","" +"BRA","9255","DD5-BR10011","UNESP","211458","BR100112002","6330","3206572","Screening","3","Date of Visit","35229801","0","21 May 2026 12:35:22:353","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 12:35:22.353","","" +"BRA","9284","DD5-BR10012","Liga Norte Riograndense Contra O Cancer","201491","BR100122001","6330","3058304","Screening","3","Date of Visit","33612037","0","10 Apr 2026 16:21:26:473","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 16:21:26.473","","" +"BRA","9302","DD5-BR10013","Hospital De Clinicas De Porto Alegre","202471","BR100132001","6330","3078310","Screening","3","Date of Visit","33906489","0","22 Apr 2026 12:20:04:907","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 12:20:04.907","","" +"BRA","9302","DD5-BR10013","Hospital De Clinicas De Porto Alegre","203110","BR100132002","6330","3092881","Screening","3","Date of Visit","34117340","0","24 Apr 2026 20:19:19:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 20:19:19.133","","" +"BRA","9302","DD5-BR10013","Hospital De Clinicas De Porto Alegre","203161","BR100132003","6330","3093952","Screening","3","Date of Visit","34128278","0","25 Apr 2026 14:01:26:713","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260425 14:01:26.713","","" +"BRA","9302","DD5-BR10013","Hospital De Clinicas De Porto Alegre","204063","BR100132004","6330","3115275","Screening","3","Date of Visit","34372782","0","30 Apr 2026 20:25:58:953","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 20:25:58.953","","" +"BRA","9303","DD5-BR10015","Solare Trials","211234","BR100152001","6330","3201858","Screening","3","Date of Visit","35168904","0","19 May 2026 16:09:22:333","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 16:09:22.333","","" +"BRA","9303","DD5-BR10015","Solare Trials","211235","BR100152002","6330","3201874","Screening","3","Date of Visit","35169086","0","19 May 2026 16:12:20:707","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 16:12:20.707","","" +"BRA","9303","DD5-BR10015","Solare Trials","211240","BR100152003","6330","3202030","Screening","3","Date of Visit","35171332","0","19 May 2026 18:45:59:120","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 18:45:59.120","","" +"BRA","9303","DD5-BR10015","Solare Trials","211242","BR100152004","6330","3202052","Screening","3","Date of Visit","35171487","0","19 May 2026 18:49:25:210","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 18:49:25.210","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","197779","BR100162001","6330","2981912","Screening","3","Date of Visit","32592295","0","20 May 2026 14:44:31:953","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 14:44:31.953","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","197779","BR100162001","6330","3045161","Week I-0 (1)","7","Date of Visit","33443243","0","20 May 2026 14:44:31:963","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 14:44:31.963","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","197779","BR100162001","6330","3047357","Week I-2 (1)","8","Date of Visit","33475579","0","14 May 2026 11:49:37:010","Tier 1","SDVTier","No","Did this visit occur?","CONTINUING","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","MISSED VISIT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 11:49:37.010","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","197779","BR100162001","6330","3119383","Week I-4 (1)","9","Date of Visit","34451206","0","20 May 2026 14:44:31:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 14:44:31.977","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","200736","BR100162002","6330","3043125","Screening","3","Date of Visit","33410239","0","06 May 2026 18:17:18:947","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 18:17:18.947","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","200736","BR100162002","6330","3131645","Week I-0 (1)","7","Date of Visit","34628791","0","06 May 2026 19:04:27:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 19:04:27.677","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","200736","BR100162002","6330","3135430","Week I-2 (1)","8","Date of Visit","34698682","0","22 May 2026 16:48:27:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 16:48:27.570","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","211330","BR100162003","6330","3203852","Screening","3","Date of Visit","35195459","0","21 May 2026 16:31:31:700","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 16:31:31.700","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","211476","BR100162004","6330","3206869","Screening","3","Date of Visit","35233195","0","22 May 2026 17:07:06:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 17:07:06.517","","" +"BRA","9310","DD5-BR10017","BR Trials","201922","BR100172001","6330","3067648","Screening","3","Date of Visit","33740974","0","16 Apr 2026 12:08:15:253","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 12:08:15.253","","" +"BRA","9310","DD5-BR10017","BR Trials","210757","BR100172002","6330","3191955","Screening","3","Date of Visit","35025958","0","14 May 2026 16:45:34:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 16:45:34.153","","" +"BRA","9310","DD5-BR10017","BR Trials","211351","BR100172003","6330","3204177","Screening","3","Date of Visit","35199305","0","22 May 2026 11:18:20:103","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 11:18:20.103","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","200603","BR100182001","6330","3040675","Screening","3","Date of Visit","33381699","0","07 May 2026 17:47:20:587","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 17:47:20.587","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","201062","BR100182002","6330","3049706","Screening","3","Date of Visit","33504550","0","06 Apr 2026 12:35:34:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 12:35:34.460","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","201062","BR100182002","6330","3194524","Week I-0 (1)","7","Date of Visit","35062168","0","14 May 2026 19:07:36:750","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 19:07:36.750","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","201067","BR100182003","6330","3049797","Screening","3","Date of Visit","33505515","0","07 May 2026 18:49:33:217","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 18:49:33.217","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","202446","BR100182004","6330","3077796","Screening","3","Date of Visit","33898795","0","20 Apr 2026 14:02:03:960","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 14:02:03.960","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","2938095","Screening","3","Date of Visit","31995641","0","20 Mar 2026 13:57:09:943","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 13:57:09.943","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","3038672","Week I-0 (1)","7","Date of Visit","33359752","0","10 Apr 2026 18:51:11:427","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 18:51:11.427","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","3060511","Week I-2 (1)","8","Date of Visit","33638167","0","10 Apr 2026 18:58:53:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 18:58:53.630","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","3060518","Week I-4 (1)","9","Date of Visit","33638258","0","23 Apr 2026 20:43:32:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 20:43:32.043","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","3089841","Week I-8 (1)","10","Date of Visit","34086012","0","22 May 2026 15:30:08:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 15:30:08.347","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195728","BR100222002","6330","2938110","Screening","3","Date of Visit","31995817","0","08 Mar 2026 20:07:57:887","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260308 20:07:57.887","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195728","BR100222002","6330","3047390","Week I-0 (1)","7","Date of Visit","33476194","0","08 May 2026 11:13:41:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 11:13:41.780","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195728","BR100222002","6330","3167770","Week I-2 (1)","8","Date of Visit","34824011","0","08 May 2026 13:19:15:530","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 13:19:15.530","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195728","BR100222002","6330","3168281","Week I-4 (1)","9","Date of Visit","34831160","0","08 May 2026 13:33:36:143","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 13:33:36.143","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","197670","BR100222003","6330","2979592","Screening","3","Date of Visit","32560354","0","07 May 2026 20:33:29:717","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 20:33:29.717","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","199251","BR100222004","6330","3014106","Screening","3","Date of Visit","33040553","0","01 Apr 2026 18:39:24:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 18:39:24.510","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","199251","BR100222004","6330","3115590","Week I-0 (1)","7","Date of Visit","34377148","0","08 May 2026 15:18:44:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 15:18:44.683","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","199251","BR100222004","6330","3168462","Week I-2 (1)","8","Date of Visit","34833335","0","13 May 2026 19:52:27:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 19:52:27.460","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","200753","BR100222005","6330","3043437","Screening","3","Date of Visit","33414414","0","01 Apr 2026 12:18:24:647","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 12:18:24.647","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","200753","BR100222005","6330","3135084","Week I-0 (1)","7","Date of Visit","34690828","0","20 May 2026 19:06:03:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 19:06:03.043","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","200753","BR100222005","6330","3204456","Week I-2 (1)","8","Date of Visit","35202794","0","20 May 2026 19:09:06:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 19:09:06.880","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","203914","BR100222006","6330","3112810","Screening","3","Date of Visit","34332431","0","07 May 2026 20:10:02:563","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 20:10:02.563","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","210473","BR100222007","6330","3186181","Screening","3","Date of Visit","34939291","0","11 May 2026 15:06:35:637","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 15:06:35.637","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","210608","BR100222008","6330","3189005","Screening","3","Date of Visit","34982469","0","18 May 2026 19:51:04:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 19:51:04.447","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","210612","BR100222009","6330","3189098","Screening","3","Date of Visit","34983526","0","18 May 2026 21:18:26:763","Tier 5","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 21:18:26.763","","" +"BRA","9809","DD5-BR10024","Complexo Hospitalar de Niteroi","201933","BR100242001","6330","3067979","Screening","3","Date of Visit","33744488","0","07 May 2026 18:34:46:347","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 18:34:46.347","","" +"BRA","9809","DD5-BR10024","Complexo Hospitalar de Niteroi","210799","BR100242002","6330","3192604","Screening","3","Date of Visit","35031835","0","13 May 2026 17:56:57:027","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 17:56:57.027","","" +"BRA","9809","DD5-BR10024","Complexo Hospitalar de Niteroi","211644","BR100242003","6330","3210124","Screening","3","Date of Visit","35275550","0","22 May 2026 15:57:48:440","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 15:57:48.440","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","2963202","Screening","3","Date of Visit","32354949","0","02 Mar 2026 12:07:25:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 12:07:25.630","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3052069","Week I-0 (1)","7","Date of Visit","33533124","0","08 Apr 2026 18:04:47:763","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 18:04:47.763","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3055594","Week I-2 (1)","8","Date of Visit","33577821","0","20 Apr 2026 14:19:51:633","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 14:19:51.633","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3078344","Week I-4 (1)","9","Date of Visit","33906977","0","06 May 2026 17:10:04:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 17:10:04.120","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3189365","Unscheduled 20260512","59","Date of Visit","34987145","0","12 May 2026 19:26:45:093","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","12 MAY 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BLOOD SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 19:26:45.093","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3207395","Unscheduled 20260520","59","Date of Visit","35239312","0","21 May 2026 17:12:38:477","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BLOOD SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 17:12:38.477","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","210884","BR100252002","6330","3194453","Screening","3","Date of Visit","35061151","0","14 May 2026 19:42:26:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 19:42:26.463","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","210966","BR100252003","6330","3196521","Screening","3","Date of Visit","35094894","0","20 May 2026 11:30:35:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 11:30:35.007","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","211200","BR100252004","6330","3201234","Screening","3","Date of Visit","35162135","0","22 May 2026 12:40:44:680","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:40:44.680","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","211436","BR100252005","6330","3206230","Screening","3","Date of Visit","35225496","0","22 May 2026 13:53:16:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 13:53:16.093","","" +"BRA","9278","DD5-BR10028","Hospital Ernesto Dornelles","204086","BR100282001","6330","3115734","Screening","3","Date of Visit","34380342","0","29 Apr 2026 13:53:13:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 13:53:13.557","","" +"BRA","9278","DD5-BR10028","Hospital Ernesto Dornelles","204086","BR100282001","6330","3201419","Week I-0 (1)","7","Date of Visit","35163614","0","22 May 2026 14:40:05:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 14:40:05.837","","" +"BRA","9306","DD5-BR10029","INTEGRAL Pesquisa e Ensino","200732","BR100292001","6330","3043023","Screening","3","Date of Visit","33409167","0","08 Apr 2026 19:21:44:117","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 19:21:44.117","","" +"BRA","9306","DD5-BR10029","INTEGRAL Pesquisa e Ensino","201061","BR100292002","6330","3049695","Screening","3","Date of Visit","33504472","0","08 Apr 2026 19:33:00:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 19:33:00.577","","" +"BRA","9306","DD5-BR10029","INTEGRAL Pesquisa e Ensino","201061","BR100292002","6330","3196636","Week I-0 (1)","7","Date of Visit","35096257","0","19 May 2026 10:58:44:467","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 10:58:44.467","","" +"BRA","9306","DD5-BR10029","INTEGRAL Pesquisa e Ensino","211322","BR100292003","6330","3203688","Screening","3","Date of Visit","35193344","0","22 May 2026 12:09:16:740","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:09:16.740","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","197782","BR100302001","6330","2981971","Screening","3","Date of Visit","32593044","0","31 Mar 2026 19:17:52:457","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 19:17:52.457","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","198826","BR100302002","6330","3005034","Screening","3","Date of Visit","32919451","0","22 Apr 2026 19:34:30:440","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 19:34:30.440","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","200869","BR100302003","6330","3045766","Screening","3","Date of Visit","33452460","0","09 Apr 2026 12:31:24:277","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 12:31:24.277","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","200869","BR100302003","6330","3194765","Week I-0 (1)","7","Date of Visit","35065674","0","15 May 2026 17:58:12:577","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 17:58:12.577","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","204069","BR100302004","6330","3115354","Screening","3","Date of Visit","34373565","0","15 May 2026 18:58:14:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 18:58:14.237","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","2901178","Screening","3","Date of Visit","31478092","0","30 Jan 2026 16:20:15:653","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260130 16:20:15.653","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","2977405","Week I-0 (1)","7","Date of Visit","32534248","0","04 Mar 2026 19:02:54:850","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 19:02:54.850","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","2977629","Week I-2 (1)","8","Date of Visit","32537539","0","19 Mar 2026 14:03:30:057","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 14:03:30.057","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","3019864","Week I-4 (1)","9","Date of Visit","33112144","0","01 Apr 2026 17:14:49:417","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 17:14:49.417","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","3045661","Week I-8 (1)","10","Date of Visit","33451296","0","29 Apr 2026 15:33:46:257","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 15:33:46.257","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","210604","CA100012002","6330","3188896","Screening","3","Date of Visit","34981406","0","13 May 2026 18:40:58:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 18:40:58.430","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","2945251","Screening","3","Date of Visit","32095045","0","23 Mar 2026 16:44:24:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 16:44:24.803","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","3023317","Week I-0 (1)","7","Date of Visit","33152604","0","23 Mar 2026 15:59:24:383","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 15:59:24.383","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","3026580","Week I-2 (1)","8","Date of Visit","33195490","0","07 Apr 2026 20:27:37:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 20:27:37.163","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","3052526","Week I-4 (1)","9","Date of Visit","33539187","0","16 Apr 2026 17:45:24:467","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 17:45:24.467","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","3071954","Week I-8 (1)","10","Date of Visit","33811218","0","13 May 2026 16:56:44:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 16:56:44.337","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","198515","CA100042002","6330","2998652","Screening","3","Date of Visit","32833850","0","08 May 2026 21:13:54:517","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 21:13:54.517","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","199859","CA100042003","6330","3026854","Screening","3","Date of Visit","33199604","0","23 Apr 2026 17:21:01:260","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 17:21:01.260","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","199859","CA100042003","6330","3081843","Week I-0 (1)","7","Date of Visit","33960504","0","27 Apr 2026 17:20:59:480","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 17:20:59.480","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","199859","CA100042003","6330","3112736","Week I-2 (1)","8","Date of Visit","34331774","0","04 May 2026 18:27:49:533","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 18:27:49.533","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","201486","CA100042004","6330","3058202","Screening","3","Date of Visit","33610766","0","20 May 2026 21:00:58:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 21:00:58.640","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","201486","CA100042004","6330","3201863","Week I-0 (1)","7","Date of Visit","35169061","0","21 May 2026 15:59:20:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 15:59:20.087","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","202807","CA100042005","6330","3086019","Screening","3","Date of Visit","34023404","0","22 Apr 2026 17:29:10:047","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 17:29:10.047","","" +"CAN","9743","DD5-CA10005","CHUM - Centre hospitalier universitaire de Montreal","202458","CA100052001","6330","3078075","Screening","3","Date of Visit","33903197","0","20 Apr 2026 14:31:23:977","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 14:31:23.977","","" +"CAN","9743","DD5-CA10005","CHUM - Centre hospitalier universitaire de Montreal","202967","CA100052002","6330","3089459","Screening","3","Date of Visit","34080535","0","04 May 2026 14:18:13:073","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 14:18:13.073","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","187326","CA100062001","6330","2762650","Screening","3","Date of Visit","29632158","0","06 Jan 2026 22:27:18:377","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260106 22:27:18.377","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2817399","Screening","3","Date of Visit","30398928","0","12 Dec 2025 15:56:05:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251212 15:56:05.120","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2888929","Week I-0 (1)","7","Date of Visit","31319700","0","26 Jan 2026 18:27:05:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260126 18:27:05.347","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2897107","Week I-2 (1)","8","Date of Visit","31429358","0","05 Feb 2026 15:22:02:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 15:22:02.700","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2918295","Week I-4 (1)","9","Date of Visit","31701286","0","17 Feb 2026 18:04:18:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 18:04:18.180","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2942307","Week I-8 (1)","10","Date of Visit","32055268","0","18 Mar 2026 19:53:54:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 19:53:54.630","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","3017677","Week I-12 (1)","11","Date of Visit","33087143","0","10 Apr 2026 20:26:32:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 20:26:32.267","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","3060584","Week M-4 (1)","15","Date of Visit","33638874","0","07 May 2026 14:56:05:300","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 14:56:05.300","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2904880","Screening","3","Date of Visit","31524760","0","29 Jan 2026 16:55:16:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 16:55:16.617","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2951838","Week I-0 (1)","7","Date of Visit","32186789","0","24 Feb 2026 17:45:30:343","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 17:45:30.343","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2955790","Week I-2 (1)","8","Date of Visit","32252518","0","09 Mar 2026 17:54:46:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 17:54:46.447","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2995210","Week I-4 (1)","9","Date of Visit","32786530","0","10 Mar 2026 21:30:59:830","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PER PI PT. TO DISCONTINUE TREATMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 21:30:59.830","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2998797","Induction Early Discontinuation (1)","12","Date of Visit","32836096","0","10 Mar 2026 21:31:56:803","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 21:31:56.803","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2998798","Induction Safety Follow Up (1)","13","Date of Visit","32836097","0","06 Apr 2026 21:00:42:307","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 21:00:42.307","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","3001777","Unscheduled 20260309","59","Date of Visit","32996901","0","07 May 2026 17:22:01:383","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTION STOOL PARASITE SCREEN-NEGATIVE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 17:22:01.383","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","195441","CA100072002","6330","2933585","Screening","3","Date of Visit","31922552","0","16 Mar 2026 20:51:57:533","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 20:51:57.533","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","2947322","Screening","3","Date of Visit","32123417","0","25 Feb 2026 18:38:12:387","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 18:38:12.387","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","3004631","Week I-0 (1)","7","Date of Visit","32914237","0","12 Mar 2026 20:39:14:083","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 20:39:14.083","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","3005221","Week I-2 (1)","8","Date of Visit","32922313","0","24 Mar 2026 19:30:44:587","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 19:30:44.587","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","3030407","Week I-4 (1)","9","Date of Visit","33244865","0","07 Apr 2026 18:10:09:720","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 18:10:09.720","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","3052419","Week I-8 (1)","10","Date of Visit","33537725","0","05 May 2026 18:53:06:863","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 18:53:06.863","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","2995390","Screening","3","Date of Visit","32788494","0","02 Apr 2026 21:45:23:820","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 21:45:23.820","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3065597","Week I-0 (1)","7","Date of Visit","33705384","0","16 Apr 2026 21:09:27:687","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 21:09:27.687","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3072330","Week I-2 (1)","8","Date of Visit","33816550","0","04 May 2026 17:36:03:020","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT BEING DISCONTINUED","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 17:36:03.020","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3128267","Induction Early Discontinuation (1)","12","Date of Visit","34573975","0","04 May 2026 19:17:49:297","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 19:17:49.297","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3128268","Induction Safety Follow Up (1)","13","Date of Visit","34573976","0","21 May 2026 21:18:40:443","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 21:18:40.443","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3052387","Unscheduled 20260407","59","Date of Visit","33537263","0","07 Apr 2026 17:43:58:363","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","07 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","RECOLLECTION OF SCREENING SAMPLE (HEMATOLOGY) AS PREVIOUSLY SAMPLES UNRESULTED.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 17:43:58.363","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3128245","Unscheduled 20260416","59","Date of Visit","34573626","0","04 May 2026 17:10:58:563","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","16 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SIGMOIDOSCOPY COMPLETED FOR PATIENT RELATED TO WORSENING IN UC. PATIENT WAS DIAGNOSED WITH CMV COLITIS","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 17:10:58.563","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3128246","Unscheduled 20260422","59","Date of Visit","34573637","0","04 May 2026 17:13:27:783","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","PATIENT CAME IN FOR ASSESSMENT. DURING VISIT IT WAS NOTED THAT RIGHT LEG WAS VERY SWOLLEN. PATIENT WAS SENT TO THE EMERGENCY DEPARTMENT FOR FOLLOW UP","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 17:13:27.783","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","211360","CA100072005","6330","3204431","Screening","3","Date of Visit","35202443","0","21 May 2026 19:18:47:947","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 19:18:47.947","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","187054","CA100082001","6330","2756461","Screening","3","Date of Visit","29542947","0","09 Jan 2026 16:13:52:600","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 16:13:52.600","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","2929753","Screening","3","Date of Visit","31861336","0","11 Feb 2026 18:38:20:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 18:38:20.600","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","2977331","Week I-0 (1)","7","Date of Visit","32533554","0","05 Mar 2026 13:49:39:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 13:49:39.833","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","2979913","Week I-2 (1)","8","Date of Visit","32565037","0","13 Mar 2026 17:15:50:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 17:15:50.617","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","3007548","Week I-4 (1)","9","Date of Visit","32953064","0","02 Apr 2026 17:18:46:380","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 17:18:46.380","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","3047556","Week I-8 (1)","10","Date of Visit","33478147","0","29 Apr 2026 18:58:13:383","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 18:58:13.383","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","200619","CA100082003","6330","3040874","Screening","3","Date of Visit","33384168","0","30 Mar 2026 16:59:45:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 16:59:45.547","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","200619","CA100082003","6330","3124979","Week I-0 (1)","7","Date of Visit","34516679","0","30 Apr 2026 18:05:26:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 18:05:26.350","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","200619","CA100082003","6330","3125206","Week I-2 (1)","8","Date of Visit","34520300","0","14 May 2026 19:07:51:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 19:07:51.453","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","2942115","Screening","3","Date of Visit","32053240","0","23 Feb 2026 15:46:44:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 15:46:44.433","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","3019890","Week I-0 (1)","7","Date of Visit","33112523","0","19 Mar 2026 21:31:24:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 21:31:24.213","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","3020565","Week I-2 (1)","8","Date of Visit","33121184","0","30 Apr 2026 19:54:13:540","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 26MAR2026 > UC FLARE","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 19:54:13.540","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","3045641","Induction Early Discontinuation (1)","12","Date of Visit","33451067","0","30 Apr 2026 15:25:22:830","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 15:25:22.830","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","3125319","Induction Safety Follow Up (1)","13","Date of Visit","34521709","0","19 May 2026 12:52:56:887","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 12:52:56.887","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2829867","Screening","3","Date of Visit","30556566","0","30 Apr 2026 20:05:20:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 20:05:20.317","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2888447","Week I-0 (1)","7","Date of Visit","31313903","0","21 Jan 2026 19:29:30:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 19:29:30.007","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2891477","Week I-2 (1)","8","Date of Visit","31351489","0","03 Feb 2026 15:56:01:260","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 15:56:01.260","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2912770","Week I-4 (1)","9","Date of Visit","31627373","0","17 Feb 2026 15:17:11:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 15:17:11.000","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2941830","Week I-8 (1)","10","Date of Visit","32049418","0","21 Mar 2026 21:21:20:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260321 21:21:20.683","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","3023723","Week I-12 (1)","11","Date of Visit","33157768","0","19 Apr 2026 16:45:18:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260419 16:45:18.527","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","3075935","Week M-4 (1)","15","Date of Visit","33867030","0","15 May 2026 12:43:19:480","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 12:43:19.480","","" +"CAN","9724","DD5-CA10012","West GTA Endoscopy","189365","CA100122001","6330","2802143","Screening","3","Date of Visit","30198596","0","27 Apr 2026 14:39:14:277","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 14:39:14.277","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","200328","CH100022001","6330","3036032","Screening","3","Date of Visit","33319905","0","27 Mar 2026 08:31:09:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 08:31:09.173","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","200328","CH100022001","6330","3070399","Week I-0 (1)","7","Date of Visit","33783524","0","17 Apr 2026 08:36:15:270","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 08:36:15.270","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","200328","CH100022001","6330","3073375","Week I-2 (1)","8","Date of Visit","33832429","0","28 Apr 2026 11:59:04:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:59:04.887","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","200328","CH100022001","6330","3115067","Week I-4 (1)","9","Date of Visit","34368077","0","12 May 2026 14:24:30:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 14:24:30.587","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","205137","CH100022002","6330","3138786","Screening","3","Date of Visit","34751924","0","08 May 2026 12:10:26:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 12:10:26.717","","" +"CHE","9510","DD5-CH10003","HOCH Health Ostschweiz Kantonsspital St.Gallen","202541","CH100032001","6330","3079993","Screening","3","Date of Visit","33931270","0","07 May 2026 14:42:34:277","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 14:42:34.277","","" +"CHE","9510","DD5-CH10003","HOCH Health Ostschweiz Kantonsspital St.Gallen","202541","CH100032001","6330","3198636","Unscheduled 20260427","59","Date of Visit","35123353","0","18 May 2026 09:51:28:407","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","27 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","PATIENT GOT WORSE, SEE SAE ""ASUC""","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 09:51:28.407","","" +"CHE","9478","DD5-CH10004","University Hospital Zurich","204552","CH100042001","6330","3126598","Screening","3","Date of Visit","34541893","0","06 May 2026 09:53:39:343","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 09:53:39.343","","" +"CHE","9478","DD5-CH10004","University Hospital Zurich","204552","CH100042001","6330","3205099","Week I-0 (1)","7","Date of Visit","35211818","0","21 May 2026 15:59:53:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 15:59:53.303","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","187091","CN100012001","6330","2757153","Screening","3","Date of Visit","29551385","0","06 Jan 2026 11:35:14:157","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260106 11:35:14.157","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2789184","Screening","3","Date of Visit","29996635","0","11 Dec 2025 09:15:01:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251211 09:15:01.823","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2859504","Week I-0 (1)","7","Date of Visit","30960927","0","05 Jan 2026 05:48:25:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260105 05:48:25.213","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2861549","Week I-2 (1)","8","Date of Visit","30984319","0","15 Jan 2026 10:09:42:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260115 10:09:42.843","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2879414","Week I-4 (1)","9","Date of Visit","31205490","0","30 Jan 2026 06:42:03:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260130 06:42:03.463","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2905687","Week I-8 (1)","10","Date of Visit","31533858","0","28 Feb 2026 06:25:28:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 FEB 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260228 06:25:28.830","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2964388","Week I-12 (1)","11","Date of Visit","32365724","0","26 Mar 2026 09:24:17:577","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 09:24:17.577","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","3035135","Induction Safety Follow Up (1)","13","Date of Visit","33308327","0","27 Apr 2026 07:24:54:880","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 07:24:54.880","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2826666","Screening","3","Date of Visit","30515710","0","12 Dec 2025 09:19:59:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251212 09:19:59.567","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2857782","Week I-0 (1)","7","Date of Visit","30938679","0","31 Dec 2025 08:54:19:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251231 08:54:19.557","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2859801","Week I-2 (1)","8","Date of Visit","30964649","0","16 Jan 2026 06:08:53:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260116 06:08:53.960","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2880914","Week I-4 (1)","9","Date of Visit","31224857","0","02 Feb 2026 10:26:36:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 10:26:36.723","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2908630","Week I-8 (1)","10","Date of Visit","31572898","0","28 Feb 2026 06:20:16:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 FEB 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260228 06:20:16.303","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2964384","Week I-12 (1)","11","Date of Visit","32365707","0","27 Mar 2026 07:18:27:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 07:18:27.340","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","3037448","Week M-4 (1)","15","Date of Visit","33340529","0","27 Apr 2026 08:04:45:593","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","THE SUBJECT REQUESTED DISCONTINUE THE TREATMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 08:04:45.593","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","3111221","Maintenance Early Discontinuation (1)","27","Date of Visit","34311369","0","27 Apr 2026 08:06:14:870","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 08:06:14.870","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","3111222","Maintenance Safety Follow Up (1)","28","Date of Visit","34311370","0","22 May 2026 03:33:48:083","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 03:33:48.083","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","201857","CN100012004","6330","3066248","Screening","3","Date of Visit","33713910","0","14 May 2026 03:17:13:807","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 03:17:13.807","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","201986","CN100012005","6330","3069186","Screening","3","Date of Visit","33762556","0","09 May 2026 10:19:04:323","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260509 10:19:04.323","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","201986","CN100012005","6330","3169178","Week I-0 (1)","7","Date of Visit","34842860","0","12 May 2026 07:35:57:050","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 07:35:57.050","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2863173","Screening","3","Date of Visit","31006068","0","06 Feb 2026 02:42:47:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 02:42:47.897","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2930686","Week I-0 (1)","7","Date of Visit","31876063","0","12 Feb 2026 08:23:43:493","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 08:23:43.493","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2931267","Week I-2 (1)","8","Date of Visit","31886847","0","27 Feb 2026 08:27:44:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 08:27:44.433","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2962516","Week I-4 (1)","9","Date of Visit","32347036","0","16 Mar 2026 07:20:50:613","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 07:20:50.613","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","3008872","Week I-8 (1)","10","Date of Visit","32968292","0","19 May 2026 09:50:56:800","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","07 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 09:50:56.800","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","3064470","Week I-12 (1)","11","Date of Visit","33690879","0","29 Apr 2026 09:01:01:003","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","THE PATIENT HAS WITHDRAWN INFORMED CONSENT.","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 09:01:01.003","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","3200947","Induction Early Discontinuation (1)","12","Date of Visit","35156188","0","19 May 2026 09:56:49:830","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 09:56:49.830","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","3117079","Induction Safety Follow Up (1)","13","Date of Visit","35156187","0","19 May 2026 10:15:50:970","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","WITHDRAWL OF THE INFORMED CONSENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 10:15:50.970","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","202506","CN100022002","6330","3079039","Screening","3","Date of Visit","33917613","0","29 Apr 2026 09:20:55:290","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 09:20:55.290","","" +"CHN","9577","DD5-CN10004","The Second Affiliated Hospital of Guangzhou Medical University","192890","CN100042001","6330","2879453","Screening","3","Date of Visit","31205882","0","09 May 2026 10:07:12:783","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260509 10:07:12.783","","" +"CHN","9780","DD5-CN10005","The Second Affiliatted Hospital of Soochow University","204136","CN100052001","6330","3116844","Screening","3","Date of Visit","34396908","0","20 May 2026 12:45:40:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 12:45:40.237","","" +"CHN","9448","DD5-CN10007","Shengjing Hospital Of China Medical University","203252","CN100072001","6330","3096617","Screening","3","Date of Visit","34160694","0","27 Apr 2026 02:18:59:250","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 02:18:59.250","","" +"CHN","9448","DD5-CN10007","Shengjing Hospital Of China Medical University","204106","CN100072002","6330","3116300","Screening","3","Date of Visit","34389156","0","29 Apr 2026 01:03:32:960","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 01:03:32.960","","" +"CHN","9448","DD5-CN10007","Shengjing Hospital Of China Medical University","208734","CN100072003","6330","3169157","Screening","3","Date of Visit","34842427","0","11 May 2026 02:05:47:583","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 02:05:47.583","","" +"CHN","9448","DD5-CN10007","Shengjing Hospital Of China Medical University","211149","CN100072004","6330","3200085","Screening","3","Date of Visit","35141783","0","19 May 2026 01:11:50:610","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 01:11:50.610","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","199816","CN100082001","6330","3025949","Screening","3","Date of Visit","33187745","0","26 Mar 2026 10:43:52:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 10:43:52.150","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","199816","CN100082001","6330","3116395","Week I-0 (1)","7","Date of Visit","34390812","0","30 Apr 2026 03:36:32:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 03:36:32.153","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","199816","CN100082001","6330","3119750","Week I-2 (1)","8","Date of Visit","34456755","0","14 May 2026 06:18:19:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 06:18:19.287","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","201625","CN100082002","6330","3061141","Screening","3","Date of Visit","33645337","0","15 Apr 2026 08:42:02:187","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 08:42:02.187","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","201625","CN100082002","6330","3116388","Week I-0 (1)","7","Date of Visit","34390636","0","30 Apr 2026 04:03:42:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 04:03:42.530","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","201625","CN100082002","6330","3119772","Week I-2 (1)","8","Date of Visit","34457023","0","13 May 2026 08:32:33:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 08:32:33.157","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","211023","CN100082003","6330","3197698","Screening","3","Date of Visit","35109853","0","25 May 2026 05:59:02:257","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 05:59:02.257","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","211153","CN100082004","6330","3200134","Screening","3","Date of Visit","35142663","0","25 May 2026 06:15:10:557","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 06:15:10.557","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","198078","CN100112001","6330","2989281","Screening","3","Date of Visit","32700563","0","24 Mar 2026 05:50:08:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 05:50:08.613","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","198078","CN100112001","6330","3058578","Week I-0 (1)","7","Date of Visit","33617215","0","15 Apr 2026 03:56:55:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 03:56:55.580","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","198078","CN100112001","6330","3066258","Week I-2 (1)","8","Date of Visit","33713992","0","24 Apr 2026 11:26:38:953","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 11:26:38.953","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","198078","CN100112001","6330","3092507","Week I-4 (1)","9","Date of Visit","34113034","0","08 May 2026 08:39:05:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 08:39:05.207","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","211654","CN100112002","6330","3210733","Screening","3","Date of Visit","35285404","0","25 May 2026 02:19:30:790","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 02:19:30.790","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199433","CN100132001","6330","3017905","Screening","3","Date of Visit","33089977","0","09 Apr 2026 06:53:54:520","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 06:53:54.520","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199433","CN100132001","6330","3082276","Week I-0 (1)","7","Date of Visit","33966752","0","28 Apr 2026 06:14:25:480","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 06:14:25.480","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199433","CN100132001","6330","3113472","Week I-2 (1)","8","Date of Visit","34340441","0","07 May 2026 03:22:10:970","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 03:22:10.970","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199433","CN100132001","6330","3135666","Week I-4 (1)","9","Date of Visit","34702736","0","22 May 2026 08:10:17:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 08:10:17.583","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199434","CN100132002","6330","3017917","Screening","3","Date of Visit","33090115","0","22 May 2026 08:51:32:233","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 08:51:32.233","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199719","CN100132003","6330","3024003","Screening","3","Date of Visit","33161655","0","22 May 2026 10:09:32:810","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 10:09:32.810","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199719","CN100132003","6330","3089972","Week I-0 (1)","7","Date of Visit","34087926","0","22 May 2026 10:09:32:833","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 10:09:32.833","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199719","CN100132003","6330","3113976","Week I-2 (1)","8","Date of Visit","34348486","0","22 May 2026 10:09:32:857","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 10:09:32.857","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","202816","CN100132004","6330","3086344","Screening","3","Date of Visit","34027966","0","07 May 2026 03:16:47:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 03:16:47.763","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","191658","CN100152001","6330","2852189","Screening","3","Date of Visit","30856673","0","07 Jan 2026 08:23:51:987","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260107 08:23:51.987","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2865022","Screening","3","Date of Visit","31028887","0","07 Jan 2026 07:44:42:263","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260107 07:44:42.263","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2905283","Week I-0 (1)","7","Date of Visit","31530473","0","30 Jan 2026 08:07:41:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260130 08:07:41.627","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2905859","Week I-2 (1)","8","Date of Visit","31536300","0","13 Feb 2026 07:09:06:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 07:09:06.247","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2934831","Week I-4 (1)","9","Date of Visit","31943280","0","27 Feb 2026 06:26:42:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 06:26:42.630","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2962095","Week I-8 (1)","10","Date of Visit","32343194","0","25 Mar 2026 07:18:33:420","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 07:18:33.420","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","3031311","Week I-12 (1)","11","Date of Visit","33257137","0","28 Apr 2026 09:14:58:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 09:14:58.980","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","3091683","Week M-4 (1)","15","Date of Visit","34105266","0","18 May 2026 08:12:03:653","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 08:12:03.653","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","2934003","Screening","3","Date of Visit","31927634","0","06 Mar 2026 10:59:44:167","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 10:59:44.167","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","2989269","Week I-0 (1)","7","Date of Visit","32700415","0","11 Mar 2026 13:46:44:993","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 13:46:44.993","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","3001471","Week I-2 (1)","8","Date of Visit","32870270","0","25 Mar 2026 11:02:43:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 11:02:43.517","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","3032248","Week I-4 (1)","9","Date of Visit","33270988","0","10 Apr 2026 04:41:23:290","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 04:41:23.290","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","3058723","Week I-8 (1)","10","Date of Visit","33618830","0","01 May 2026 04:14:57:343","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 04:14:57.343","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","2883625","Screening","3","Date of Visit","31254821","0","11 Mar 2026 01:12:54:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 01:12:54.210","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","2938183","Week I-0 (1)","7","Date of Visit","31997032","0","11 Mar 2026 02:28:17:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 02:28:17.297","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","2998995","Week I-2 (1)","8","Date of Visit","32838201","0","11 Mar 2026 12:36:02:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 12:36:02.757","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","3001096","Week I-4 (1)","9","Date of Visit","32865562","0","20 Mar 2026 06:04:34:377","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 06:04:34.377","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","3020955","Week I-8 (1)","10","Date of Visit","33125443","0","29 Apr 2026 07:31:47:953","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 07:31:47.953","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","3073391","Week I-12 (1)","11","Date of Visit","33832702","0","20 May 2026 05:01:23:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 05:01:23.763","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","210940","CN100212002","6330","3195907","Screening","3","Date of Visit","35082655","0","15 May 2026 07:25:37:243","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 07:25:37.243","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","211178","CN100212003","6330","3200674","Screening","3","Date of Visit","35152296","0","19 May 2026 08:37:35:397","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 08:37:35.397","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","211367","CN100212004","6330","3204734","Screening","3","Date of Visit","35207815","0","21 May 2026 02:51:32:920","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 02:51:32.920","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","193486","CN100222001","6330","2891682","Screening","3","Date of Visit","31355282","0","03 Feb 2026 03:32:30:023","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 03:32:30.023","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","202352","CN100222002","6330","3076073","Screening","3","Date of Visit","33868332","0","28 Apr 2026 10:42:31:597","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 10:42:31.597","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","202352","CN100222002","6330","3202383","Week I-0 (1)","7","Date of Visit","35176566","0","22 May 2026 05:13:41:380","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 05:13:41.380","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","208733","CN100222003","6330","3169143","Screening","3","Date of Visit","34842248","0","15 May 2026 02:26:59:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 02:26:59.070","","" +"CHN","9529","DD5-CN10023","Meihekou Central Hospital","194579","CN100232001","6330","2915696","Screening","3","Date of Visit","31661945","0","18 Mar 2026 06:47:35:607","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 06:47:35.607","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2886485","Screening","3","Date of Visit","31289860","0","23 Jan 2026 01:44:21:067","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 01:44:21.067","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2924623","Week I-0 (1)","7","Date of Visit","31789114","0","10 Feb 2026 06:08:59:673","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 06:08:59.673","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2924661","Week I-2 (1)","8","Date of Visit","31789767","0","25 Feb 2026 02:39:12:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 02:39:12.657","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2956209","Week I-4 (1)","9","Date of Visit","32258072","0","10 Mar 2026 03:42:48:327","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 03:42:48.327","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2995661","Week I-8 (1)","10","Date of Visit","32792269","0","14 Apr 2026 10:23:41:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 10:23:41.697","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","3064785","Week I-12 (1)","11","Date of Visit","33694595","0","08 May 2026 02:00:18:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 02:00:18.387","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","197147","CN100242002","6330","2968150","Screening","3","Date of Visit","32406729","0","14 Apr 2026 10:19:39:047","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 10:19:39.047","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","208736","CN100242003","6330","3169258","Screening","3","Date of Visit","34844006","0","11 May 2026 04:49:20:947","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 04:49:20.947","","" +"CHN","9748","DD5-CN10025","Heilongjiang Provincial Hospital","199143","CN100252001","6330","3011828","Screening","3","Date of Visit","33009172","0","30 Apr 2026 08:47:38:190","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 08:47:38.190","","" +"CHN","9748","DD5-CN10025","Heilongjiang Provincial Hospital","200525","CN100252002","6330","3039852","Screening","3","Date of Visit","33372136","0","14 Apr 2026 09:39:35:363","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 09:39:35.363","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","200792","CN100262001","6330","3044261","Screening","3","Date of Visit","33430118","0","21 May 2026 04:37:42:083","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 04:37:42.083","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","200792","CN100262001","6330","3138659","Week I-0 (1)","7","Date of Visit","34750263","0","21 May 2026 04:42:13:333","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 04:42:13.333","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","202643","CN100262002","6330","3082242","Screening","3","Date of Visit","33966052","0","22 Apr 2026 01:52:47:450","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 01:52:47.450","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","203949","CN100262003","6330","3113156","Screening","3","Date of Visit","34336521","0","22 May 2026 11:38:10:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 11:38:10.850","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","210805","CN100262004","6330","3192867","Screening","3","Date of Visit","35036429","0","14 May 2026 03:15:44:520","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 03:15:44.520","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","2886378","Screening","3","Date of Visit","31288362","0","28 Jan 2026 07:54:10:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 07:54:10.870","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","2964360","Week I-0 (1)","7","Date of Visit","32365465","0","06 Mar 2026 09:48:09:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 09:48:09.583","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","2981701","Week I-2 (1)","8","Date of Visit","32590364","0","20 Mar 2026 11:26:41:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 11:26:41.290","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","3022182","Week I-4 (1)","9","Date of Visit","33137579","0","31 Mar 2026 13:33:29:910","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 13:33:29.910","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","3043262","Week I-8 (1)","10","Date of Visit","33412208","0","30 Apr 2026 07:09:17:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:09:17.837","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","194314","CN100272002","6330","2909916","Screening","3","Date of Visit","31588352","0","27 Mar 2026 10:33:46:473","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 10:33:46.473","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","202981","CN100272003","6330","3089940","Screening","3","Date of Visit","34087527","0","24 Apr 2026 01:45:53:370","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 01:45:53.370","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","211540","CN100272004","6330","3207915","Screening","3","Date of Visit","35248033","0","22 May 2026 02:43:19:920","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 02:43:19.920","","" +"CHN","9182","DD5-CN10028","Affiliated Hospital of Hainan Medical University","201672","CN100282001","6330","3061947","Screening","3","Date of Visit","33655813","0","13 Apr 2026 10:41:03:097","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 10:41:03.097","","" +"CHN","9361","DD5-CN10030","The affiliated hospital of Southwest Medical University","210630","CN100302001","6330","3189561","Screening","3","Date of Visit","34990242","0","13 May 2026 01:47:09:467","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 01:47:09.467","","" +"CHN","9361","DD5-CN10030","The affiliated hospital of Southwest Medical University","211255","CN100302002","6330","3202330","Screening","3","Date of Visit","35175561","0","20 May 2026 01:21:11:937","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 01:21:11.937","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193488","CN100312001","6330","2891734","Screening","3","Date of Visit","31356145","0","03 Mar 2026 07:34:13:860","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 07:34:13.860","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","2897744","Screening","3","Date of Visit","31435883","0","19 May 2026 09:08:20:280","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 09:08:20.280","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","2995502","Week I-0 (1)","7","Date of Visit","32789987","0","12 Mar 2026 03:27:43:667","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 03:27:43.667","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","3002848","Week I-2 (1)","8","Date of Visit","32888275","0","24 Mar 2026 10:07:18:100","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 10:07:18.100","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","3028734","Week I-4 (1)","9","Date of Visit","33222676","0","07 Apr 2026 06:27: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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 06:27:17.787","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","3050793","Week I-8 (1)","10","Date of Visit","33516248","0","19 May 2026 09:26:05:880","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 09:26:05.880","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","3200855","Induction Early Discontinuation (1)","12","Date of Visit","35155048","0","19 May 2026 09:26:30:843","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 09:26:30.843","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","199293","CN100312003","6330","3015021","Screening","3","Date of Visit","33052098","0","17 Apr 2026 07:12:53:437","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 07:12:53.437","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","200377","CN100322001","6330","3036902","Screening","3","Date of Visit","33331047","0","15 Apr 2026 05:25:16:117","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 05:25:16.117","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","200377","CN100322001","6330","3116310","Week I-0 (1)","7","Date of Visit","34389439","0","08 May 2026 07:06:40:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 07:06:40.200","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","200377","CN100322001","6330","3138643","Week I-2 (1)","8","Date of Visit","34749938","0","25 May 2026 03:50:02:900","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 03:50:02.900","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","201624","CN100322002","6330","3061106","Screening","3","Date of Visit","33644634","0","17 Apr 2026 06:07:46:333","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 06:07:46.333","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","201624","CN100322002","6330","3195604","Week I-0 (1)","7","Date of Visit","35078601","0","20 May 2026 11:55:27:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 11:55:27.957","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","210496","CN100322003","6330","3186913","Screening","3","Date of Visit","34951686","0","12 May 2026 04:00:16:390","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 04:00:16.390","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","2884164","Screening","3","Date of Visit","31262338","0","28 Jan 2026 04:10:23:893","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 04:10:23.893","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","2924640","Week I-0 (1)","7","Date of Visit","31789347","0","11 Feb 2026 13:31:49:513","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 13:31:49.513","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","2929591","Week I-2 (1)","8","Date of Visit","31858696","0","27 Feb 2026 08:55:10:480","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 08:55:10.480","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","2962594","Week I-4 (1)","9","Date of Visit","32348342","0","13 Mar 2026 03:11:09:620","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 03:11:09.620","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","3005426","Week I-8 (1)","10","Date of Visit","32925094","0","10 Apr 2026 09:51:58:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 09:51:58.400","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","3059567","Week I-12 (1)","11","Date of Visit","33627387","0","09 May 2026 11:29:26:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260509 11:29:26.857","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","2914752","Screening","3","Date of Visit","31648177","0","08 Feb 2026 07:43:45:013","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260208 07:43:45.013","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","2958833","Week I-0 (1)","7","Date of Visit","32298898","0","26 Feb 2026 12:38:15:190","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 12:38:15.190","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","2960380","Week I-2 (1)","8","Date of Visit","32321326","0","13 Mar 2026 09:41:32:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 09:41:32.743","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","3006359","Week I-4 (1)","9","Date of Visit","32937873","0","26 Mar 2026 16:05:16:143","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 16:05:16.143","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","3036434","Week I-8 (1)","10","Date of Visit","33324381","0","28 Apr 2026 02:47:27:473","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 02:47:27.473","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","2874092","Screening","3","Date of Visit","31138776","0","22 Jan 2026 07:31:02:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 07:31:02.737","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","2924504","Week I-0 (1)","7","Date of Visit","31787455","0","11 Feb 2026 09:34:10:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 09:34:10.483","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","2928930","Week I-2 (1)","8","Date of Visit","31849437","0","27 Feb 2026 09:11:26:467","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 09:11:26.467","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","2962619","Week I-4 (1)","9","Date of Visit","32348663","0","13 Mar 2026 09:45:13:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 09:45:13.430","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","3006375","Week I-8 (1)","10","Date of Visit","32938053","0","14 Apr 2026 03:48:59:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 03:48:59.753","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","3063288","Week I-12 (1)","11","Date of Visit","33675666","0","11 May 2026 10:13:27:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 10:13:27.213","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193388","CN100332002","6330","2889345","Screening","3","Date of Visit","31324748","0","03 Feb 2026 02:51:27:033","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 02:51:27.033","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","202817","CN100332003","6330","3086363","Screening","3","Date of Visit","34028255","0","28 Apr 2026 06:05:27:253","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 06:05:27.253","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","202817","CN100332003","6330","3202412","Week I-0 (1)","7","Date of Visit","35177085","0","22 May 2026 01:03:14:650","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 01:03:14.650","","" +"CHN","9480","DD5-CN10034","Ruijin Hospital Shanghai Jiao Tong University","211556","CN100341001","6330","3208289","Screening","3","Date of Visit","35253081","0","22 May 2026 06:51:38:503","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 06:51:38.503","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","2905358","Screening","3","Date of Visit","31531147","0","28 Feb 2026 01:50:10:480","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260228 01:50:10.480","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","2968216","Week I-0 (1)","7","Date of Visit","32407480","0","10 Mar 2026 04:31:39:197","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 04:31:39.197","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","2995699","Week I-2 (1)","8","Date of Visit","32792702","0","18 Mar 2026 08:28:23:243","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 08:28:23.243","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","3015715","Week I-4 (1)","9","Date of Visit","33060181","0","02 Apr 2026 06:07:03:333","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 06:07:03.333","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","3046343","Week I-8 (1)","10","Date of Visit","33461708","0","27 Apr 2026 07:19:03:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 07:19:03.000","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","196836","CN100352002","6330","2961824","Screening","3","Date of Visit","32339412","0","28 Feb 2026 02:40:20:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260228 02:40:20.047","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","196836","CN100352002","6330","3046022","Week I-0 (1)","7","Date of Visit","33456477","0","09 Apr 2026 09:22:07:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 09:22:07.237","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","196836","CN100352002","6330","3056876","Week I-2 (1)","8","Date of Visit","33595832","0","16 Apr 2026 06:26:09:073","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 06:26:09.073","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","196836","CN100352002","6330","3068940","Week I-4 (1)","9","Date of Visit","33759262","0","29 Apr 2026 06:59:33:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 06:59:33.030","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","197470","CN100352003","6330","2975364","Screening","3","Date of Visit","32509477","0","10 Mar 2026 08:38:14:720","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 08:38:14.720","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","197470","CN100352003","6330","3061025","Week I-0 (1)","7","Date of Visit","33643664","0","12 May 2026 09:17:03:203","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 09:17:03.203","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","197470","CN100352003","6330","3069145","Week I-2 (1)","8","Date of Visit","33761879","0","27 Apr 2026 07:39:21:573","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 07:39:21.573","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","197470","CN100352003","6330","3111130","Week I-4 (1)","9","Date of Visit","34310403","0","11 May 2026 09:19:58:673","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 09:19:58.673","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","200961","CN100352004","6330","3047783","Screening","3","Date of Visit","33481361","0","10 Apr 2026 09:39:36:620","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 09:39:36.620","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","200961","CN100352004","6330","3189625","Week I-0 (1)","7","Date of Visit","34991535","0","14 May 2026 01:58:20:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 01:58:20.920","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","199870","CN100361001","6330","3027061","Screening","3","Date of Visit","33202723","0","01 Apr 2026 05:14:24:193","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 05:14:24.193","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","2895782","Screening","3","Date of Visit","31412179","0","03 Feb 2026 07:13:52:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 07:13:52.047","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","2956195","Week I-0 (1)","7","Date of Visit","32257958","0","02 Mar 2026 03:19:26:593","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 03:19:26.593","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","2964927","Week I-2 (1)","8","Date of Visit","32370451","0","13 Mar 2026 08:48:54:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 08:48:54.107","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","3006153","Week I-4 (1)","9","Date of Visit","32934538","0","26 Mar 2026 07:44:32:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 07:44:32.463","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","3034783","Week I-8 (1)","10","Date of Visit","33303843","0","21 Apr 2026 06:15:05:877","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 06:15:05.877","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","3079199","Week I-12 (1)","11","Date of Visit","33919632","0","21 May 2026 02:55:12:380","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 02:55:12.380","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","201858","CN100362002","6330","3066257","Screening","3","Date of Visit","33713973","0","27 Apr 2026 04:25:32:220","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 04:25:32.220","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","201858","CN100362002","6330","3202374","Week I-0 (1)","7","Date of Visit","35176230","0","23 May 2026 01:19:13:197","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260523 01:19:13.197","","" +"CHN","9690","DD5-CN10038","The Central Hospital of Wuhan","210495","CN100382001","6330","3186837","Screening","3","Date of Visit","34950454","0","20 May 2026 06:06:54:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 06:06:54.027","","" +"CHN","9189","DD5-CN10039","The First Affiliated Hospital of Ningbo University","191584","CN100392001","6330","2850009","Screening","3","Date of Visit","30822088","0","05 Jan 2026 08:16:26:170","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260105 08:16:26.170","","" +"CHN","9782","DD5-CN10040","Affiliated Hospital of Zunyi Medical University","202351","CN100402001","6330","3076065","Screening","3","Date of Visit","33868275","0","13 May 2026 05:38:15:693","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 05:38:15.693","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892067","Screening","3","Date of Visit","31359746","0","29 Apr 2026 13:32:37:760","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 13:32:37.760","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","06 May 2026 07:06:39:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:06:39.787","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","3082595","Week I-12 (1)","11","Date of Visit","33970356","0","18 May 2026 07:04:06:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 07:04:06.580","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957354","Screening","3","Date of Visit","32277668","0","29 Apr 2026 13:41:31:490","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 13:41:31.490","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 05:43:05.867","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","3052820","Week I-2 (1)","8","Date of Visit","33544491","0","06 May 2026 07:08:42:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:08:42.183","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","3132969","Week I-4 (1)","9","Date of Visit","34646649","0","06 May 2026 07:11:20:060","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:11:20.060","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","204115","CZ100012003","6330","3116494","Screening","3","Date of Visit","34392070","0","05 May 2026 09:12:30:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 09:12:30.347","","" +"CZE","9707","DD5-CZ10003","Gastromedic, Ltd.","210634","CZ100032001","6330","3189738","Screening","3","Date of Visit","34994309","0","13 May 2026 13:23:57:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 13:23:57.287","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","2934312","Screening","3","Date of Visit","31932393","0","19 May 2026 13:18:58:263","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 13:18:58.263","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260412 18:13:09.703","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","3060953","Week I-4 (1)","9","Date of Visit","33643053","0","16 May 2026 10:19:42:537","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260516 10:19:42.537","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","3197362","Week I-8 (1)","10","Date of Visit","35106375","0","18 May 2026 18:51:20:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 18:51:20.007","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076150","Screening","3","Date of Visit","33869435","0","16 May 2026 19:58:32:897","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260516 19:58:32.897","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 09:50:06.007","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","200677","CZ100092001","6330","3129676","Week I-0 (1)","7","Date of Visit","34593504","0","12 May 2026 18:46:43:240","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 18:46:43.240","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 11:57:45.937","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3088807","Week I-4 (1)","9","Date of Visit","34069070","0","11 May 2026 11:02:49:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 11:02:49.280","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 09:17:41.950","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3187346","Week I-0 (1)","7","Date of Visit","34959328","0","18 May 2026 06:43:41:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 06:43:41.517","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","204894","CZ100132003","6330","3133641","Screening","3","Date of Visit","34663722","0","18 May 2026 06:55:48:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 06:55:48.753","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 19:26:15.497","","" +"CZE","9759","DD5-CZ10020","Fakultni Thomayerova nemocnice","201661","CZ100201001","6330","3198267","Week I-0 (1)","7","Date of Visit","35117663","0","19 May 2026 14:55:11:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 14:55:11.877","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","04 May 2026 06:26:43:593","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 06:26:43.593","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","3126363","Week I-8 (1)","10","Date of Visit","34536390","0","04 May 2026 06:27:02:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 06:27:02.323","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 06:45:23.183","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3086931","Week I-4 (1)","9","Date of Visit","34035672","0","05 May 2026 09:30:00:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 09:30:00.837","","" +"DEU","9561","DD5-DE10001","Universitaetsklinik Erlangen","203843","DE100012001","6330","3111438","Screening","3","Date of Visit","34313106","0","21 May 2026 05:34:41:773","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 05:34:41.773","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","2910840","Screening","3","Date of Visit","31596721","0","03 Feb 2026 12:37:48:023","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 12:37:48.023","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","2959554","Week I-0 (1)","7","Date of Visit","32308934","0","26 Feb 2026 12:41:49:600","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 12:41:49.600","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","2960418","Week I-2 (1)","8","Date of Visit","32321729","0","20 Mar 2026 11:05:39:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAR 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 11:05:39.823","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","3022060","Week I-4 (1)","9","Date of Visit","33136649","0","27 Mar 2026 11:39:14:547","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 11:39:14.547","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","3038117","Week I-8 (1)","10","Date of Visit","33350431","0","23 Apr 2026 06:58:24:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 06:58:24.770","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","3086973","Week I-12 (1)","11","Date of Visit","34036171","0","21 May 2026 11:53:28:860","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 11:53:28.860","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","2978623","Screening","3","Date of Visit","32549923","0","12 Mar 2026 12:49:48:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 12:49:48.397","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","3018523","Week I-0 (1)","7","Date of Visit","33097177","0","20 Mar 2026 08:59:03:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 08:59:03.580","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","3021456","Week I-2 (1)","8","Date of Visit","33130874","0","02 Apr 2026 10:48:44:777","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 10:48:44.777","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","3047030","Week I-4 (1)","9","Date of Visit","33471258","0","16 Apr 2026 11:51:53:103","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 11:51:53.103","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","3070357","Week I-8 (1)","10","Date of Visit","33782986","0","13 May 2026 11:33:35:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 11:33:35.207","","" +"DEU","9459","DD5-DE10006","Universitatsklinikum Schleswig Holstein Kiel","202000","DE100062001","6330","3069369","Screening","3","Date of Visit","33765450","0","17 Apr 2026 09:29:55:887","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 09:29:55.887","","" +"DEU","9459","DD5-DE10006","Universitatsklinikum Schleswig Holstein Kiel","202000","DE100062001","6330","3126750","Week I-0 (1)","7","Date of Visit","34545296","0","06 May 2026 09:39:35:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 09:39:35.340","","" +"DEU","9459","DD5-DE10006","Universitatsklinikum Schleswig Holstein Kiel","202000","DE100062001","6330","3133880","Week I-2 (1)","8","Date of Visit","34667906","0","18 May 2026 09:17:58:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 09:17:58.340","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","197657","DE100102001","6330","2979270","Screening","3","Date of Visit","32557339","0","12 Mar 2026 07:32:32:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 07:32:32.050","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","197657","DE100102001","6330","3044648","Week I-0 (1)","7","Date of Visit","33436898","0","02 Apr 2026 11:29:07:863","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 11:29:07.863","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","197657","DE100102001","6330","3047115","Week I-2 (1)","8","Date of Visit","33472332","0","22 Apr 2026 11:19:58:643","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 11:19:58.643","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","197657","DE100102001","6330","3084260","Week I-4 (1)","9","Date of Visit","33992707","0","15 May 2026 10:33:41:860","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 10:33:41.860","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","200305","DE100102002","6330","3035562","Screening","3","Date of Visit","33313177","0","27 Mar 2026 12:02:26:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 12:02:26.617","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","200305","DE100102002","6330","3077178","Week I-0 (1)","7","Date of Visit","33886192","0","22 Apr 2026 13:10:39:817","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 13:10:39.817","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","200305","DE100102002","6330","3084948","Week I-2 (1)","8","Date of Visit","34001577","0","15 May 2026 11:05:41:947","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 11:05:41.947","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","200305","DE100102002","6330","3196500","Week I-4 (1)","9","Date of Visit","35094697","0","22 May 2026 07:19:38:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:19:38.033","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","201659","DE100102003","6330","3061781","Screening","3","Date of Visit","33654151","0","22 Apr 2026 09:01:28:437","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 09:01:28.437","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","201659","DE100102003","6330","3126751","Week I-0 (1)","7","Date of Visit","34545308","0","05 May 2026 14:02:51:483","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 14:02:51.483","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","201659","DE100102003","6330","3131942","Week I-2 (1)","8","Date of Visit","34633083","0","22 May 2026 07:12:41:237","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:12:41.237","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","202869","DE100102004","6330","3087549","Screening","3","Date of Visit","34045158","0","15 May 2026 10:59:20:293","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 10:59:20.293","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","2976808","Screening","3","Date of Visit","32527754","0","05 Mar 2026 10:37:39:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 10:37:39.393","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","3039671","Week I-0 (1)","7","Date of Visit","33369981","0","31 Mar 2026 08:34:54:923","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 08:34:54.923","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","3042401","Week I-2 (1)","8","Date of Visit","33402073","0","16 Apr 2026 09:50:34:210","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 09:50:34.210","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","3069648","Week I-4 (1)","9","Date of Visit","33770537","0","28 Apr 2026 08:19:13:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 08:19:13.010","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","3134505","Unscheduled 20260304","59","Date of Visit","34680053","0","06 May 2026 12:18:22:430","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","04 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SITE ERROR","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 12:18:22.430","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","202394","DE100152002","6330","3076825","Screening","3","Date of Visit","33880572","0","21 Apr 2026 07:53:11:903","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 07:53:11.903","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","199511","DE100162001","6330","3019660","Screening","3","Date of Visit","33110021","0","20 May 2026 07:28:58:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 07:28:58.440","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","199511","DE100162001","6330","3080357","Week I-0 (1)","7","Date of Visit","33934727","0","21 Apr 2026 15:08:37:573","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 15:08:37.573","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","199511","DE100162001","6330","3081596","Week I-2 (1)","8","Date of Visit","33957283","0","06 May 2026 12:28:17:360","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 12:28:17.360","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","199511","DE100162001","6330","3134568","Week I-4 (1)","9","Date of Visit","34681720","0","20 May 2026 06:37:55:513","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 06:37:55.513","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","202371","DE100162002","6330","3076428","Screening","3","Date of Visit","33873389","0","20 Apr 2026 11:37:37:657","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 11:37:37.657","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","202371","DE100162002","6330","3128865","Week I-0 (1)","7","Date of Visit","34581395","0","05 May 2026 09:03:56:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 09:03:56.987","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","202371","DE100162002","6330","3129582","Week I-2 (1)","8","Date of Visit","34592416","0","19 May 2026 08:51:50:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 08:51:50.350","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","204863","DE100162003","6330","3132959","Screening","3","Date of Visit","34646542","0","06 May 2026 13:59:35:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 13:59:35.527","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","2928849","Screening","3","Date of Visit","31847611","0","11 Feb 2026 16:00:44:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 16:00:44.413","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","2965325","Week I-0 (1)","7","Date of Visit","32374251","0","02 Mar 2026 14:57:59:107","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 14:57:59.107","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","2967497","Week I-2 (1)","8","Date of Visit","32397847","0","18 Mar 2026 12:47:46:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 12:47:46.173","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","3016823","Week I-4 (1)","9","Date of Visit","33076010","0","30 Mar 2026 12:05:13:907","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 12:05:13.907","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","3040605","Week I-8 (1)","10","Date of Visit","33380924","0","27 Apr 2026 09:51:54:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 09:51:54.723","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","2950988","Screening","3","Date of Visit","32171614","0","04 Mar 2026 16:17:07:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 16:17:07.100","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","3031804","Week I-0 (1)","7","Date of Visit","33263554","0","25 Mar 2026 15:26:02:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 15:26:02.217","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","3033266","Week I-2 (1)","8","Date of Visit","33282029","0","08 Apr 2026 13:38:44:763","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 13:38:44.763","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","3054933","Week I-4 (1)","9","Date of Visit","33570977","0","22 Apr 2026 11:32:51:523","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 11:32:51.523","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","3084374","Week I-8 (1)","10","Date of Visit","33993901","0","20 May 2026 10:28:25:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 10:28:25.433","","" +"DEU","9471","DD5-DE10023","Medizinisches Versorgungszentrum (MVZ) Dachau","202679","DE100232001","6330","3083104","Screening","3","Date of Visit","33976651","0","21 May 2026 10:21:12:843","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 10:21:12.843","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2892652","Screening","3","Date of Visit","31367375","0","07 May 2026 06:29:01:490","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 06:29:01.490","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2916492","Week I-0 (1)","7","Date of Visit","31671995","0","06 Feb 2026 12:20:37:903","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 12:20:37.903","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2920420","Week I-2 (1)","8","Date of Visit","31730987","0","18 Feb 2026 14:14:48:633","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260218 14:14:48.633","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2944646","Week I-4 (1)","9","Date of Visit","32085881","0","04 Mar 2026 13:11:04:647","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 13:11:04.647","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2977008","Week I-8 (1)","10","Date of Visit","32530108","0","02 Apr 2026 05:51:03:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 05:51:03.213","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","3046317","Week I-12 (1)","11","Date of Visit","33461369","0","30 Apr 2026 07:34:22:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:34:22.560","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","2900238","Screening","3","Date of Visit","31467855","0","07 May 2026 06:29:43:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 06:29:43.710","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","2943613","Week I-0 (1)","7","Date of Visit","32071924","0","13 Apr 2026 09:19:59:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 09:19:59.930","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","2945923","Week I-2 (1)","8","Date of Visit","32102772","0","04 Mar 2026 13:11:35:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 13:11:35.980","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","2977010","Week I-4 (1)","9","Date of Visit","32530126","0","17 Mar 2026 14:08:14:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 14:08:14.247","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","3013948","Week I-8 (1)","10","Date of Visit","33039080","0","16 Apr 2026 05:39:47:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 05:39:47.600","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","3068843","Week I-12 (1)","11","Date of Visit","33757469","0","21 May 2026 08:18:55:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 08:18:55.307","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","2940624","Screening","3","Date of Visit","32033409","0","07 May 2026 06:30:29:117","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 06:30:29.117","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","2989891","Week I-0 (1)","7","Date of Visit","32709578","0","18 May 2026 10:03:30:867","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 10:03:30.867","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","2995960","Week I-2 (1)","8","Date of Visit","32796349","0","24 Mar 2026 12:23:38:820","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 12:23:38.820","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","3029543","Week I-4 (1)","9","Date of Visit","33232810","0","09 Apr 2026 05:49:13:863","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 05:49:13.863","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","3056005","Week I-8 (1)","10","Date of Visit","33583096","0","08 May 2026 09:36:53:520","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 09:36:53.520","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","201833","DE100252004","6330","3065504","Screening","3","Date of Visit","33704043","0","18 May 2026 10:28:31:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 10:28:31.113","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","201833","DE100252004","6330","3208255","Week I-0 (1)","7","Date of Visit","35252716","0","22 May 2026 07:45:33:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:45:33.437","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","211423","DE100252005","6330","3206015","Screening","3","Date of Visit","35222531","0","21 May 2026 10:18:47:740","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 10:18:47.740","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","193876","DE100262001","6330","2900207","Screening","3","Date of Visit","31467530","0","22 May 2026 06:12:24:470","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 06:12:24.470","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","193965","DE100262002","6330","2902437","Screening","3","Date of Visit","31492812","0","22 May 2026 06:13:23:560","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 06:13:23.560","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","194053","DE100262003","6330","2904529","Screening","3","Date of Visit","31522436","0","22 May 2026 06:13:53:627","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 06:13:53.627","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","194933","DE100262004","6330","2923386","Screening","3","Date of Visit","31770625","0","22 May 2026 06:14:23:507","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 06:14:23.507","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","195865","DE100262005","6330","2941490","Screening","3","Date of Visit","32045414","0","22 May 2026 06:15:24:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 06:15:24.753","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","195865","DE100262005","6330","3041923","Week I-0 (1)","7","Date of Visit","33397295","0","31 Mar 2026 08:46:21:203","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 08:46:21.203","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","195865","DE100262005","6330","3042442","Week I-2 (1)","8","Date of Visit","33402595","0","15 Apr 2026 07:03:21:327","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 07:03:21.327","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","195865","DE100262005","6330","3066580","Week I-4 (1)","9","Date of Visit","33718757","0","22 May 2026 06:23:48:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 06:23:48.810","","" +"DEU","9507","DD5-DE10036","Universitaetsklinikum der RWTH Aachen","200323","DE100361001","6330","3035905","Screening","3","Date of Visit","33318316","0","15 May 2026 08:10:34:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 08:10:34.657","","" +"DEU","9507","DD5-DE10036","Universitaetsklinikum der RWTH Aachen","200323","DE100361001","6330","3079555","Week I-0 (1)","7","Date of Visit","33925667","0","21 Apr 2026 12:56:10:777","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 12:56:10.777","","" +"DEU","9507","DD5-DE10036","Universitaetsklinikum der RWTH Aachen","200323","DE100361001","6330","3080990","Week I-2 (1)","8","Date of Visit","33950364","0","05 May 2026 06:36:11:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 06:36:11.107","","" +"DEU","9507","DD5-DE10036","Universitaetsklinikum der RWTH Aachen","200323","DE100361001","6330","3128945","Week I-4 (1)","9","Date of Visit","34582875","0","20 May 2026 11:28:20:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 11:28:20.707","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","2889806","Screening","3","Date of Visit","31329674","0","21 Jan 2026 11:25:02:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 11:25:02.553","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","2939261","Week I-0 (1)","7","Date of Visit","32013385","0","17 Feb 2026 09:03:43:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 09:03:43.833","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","2940650","Week I-2 (1)","8","Date of Visit","32033872","0","02 Mar 2026 07:03:01:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 07:03:01.400","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","2965160","Week I-4 (1)","9","Date of Visit","32372711","0","18 Mar 2026 10:40:06:993","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 10:40:06.993","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","3016285","Week I-8 (1)","10","Date of Visit","33069597","0","14 Apr 2026 10:29:54:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 10:29:54.440","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","3064851","Week I-12 (1)","11","Date of Visit","33694924","0","19 May 2026 11:50:45:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 11:50:45.497","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","198588","ES100032002","6330","3000052","Screening","3","Date of Visit","32849928","0","07 Apr 2026 10:24:09:610","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 10:24:09.610","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","198588","ES100032002","6330","3079606","Week I-0 (1)","7","Date of Visit","33926374","0","24 Apr 2026 11:00:50:823","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 11:00:50.823","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","198588","ES100032002","6330","3092431","Week I-2 (1)","8","Date of Visit","34112353","0","07 May 2026 09:29:49:910","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 09:29:49.910","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","198588","ES100032002","6330","3136640","Week I-4 (1)","9","Date of Visit","34720949","0","19 May 2026 11:58:12:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 11:58:12.223","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2850599","Screening","3","Date of Visit","30829497","0","12 Jan 2026 14:55:29:643","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260112 14:55:29.643","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2898689","Week I-0 (1)","7","Date of Visit","31447333","0","30 Jan 2026 16:22:30:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260130 16:22:30.347","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2907037","Week I-2 (1)","8","Date of Visit","31551280","0","09 Feb 2026 11:31:33:917","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 11:31:33.917","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2922720","Week I-4 (1)","9","Date of Visit","31761470","0","09 Mar 2026 15:11:26:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 15:11:26.960","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2994933","Week I-8 (1)","10","Date of Visit","32782923","0","26 Mar 2026 10:59:15:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 10:59:15.707","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","3035500","Week I-12 (1)","11","Date of Visit","33312539","0","23 Apr 2026 17:01:42:313","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 17:01:42.313","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","193890","ES100042002","6330","2900488","Screening","3","Date of Visit","31470654","0","04 Mar 2026 14:52:03:917","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 14:52:03.917","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","195830","ES100042003","6330","2940859","Screening","3","Date of Visit","32036579","0","26 Mar 2026 17:22:51:490","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 17:22:51.490","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","2973380","Screening","3","Date of Visit","32482772","0","26 Mar 2026 11:29:17:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 11:29:17.853","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3000215","Week I-0 (1)","7","Date of Visit","32852704","0","26 Mar 2026 11:28:11:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 11:28:11.133","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3035504","Week I-2 (1)","8","Date of Visit","33312594","0","26 Mar 2026 11:28:11:150","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 11:28:11.150","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3035505","Week I-4 (1)","9","Date of Visit","33312609","0","08 Apr 2026 14:39:48:120","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 14:39:48.120","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3055180","Week I-8 (1)","10","Date of Visit","33573610","0","11 May 2026 11:16:42:363","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 11:16:42.363","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3194508","Unscheduled 20260408","59","Date of Visit","35061997","0","14 May 2026 12:53:44:090","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","8 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BECAUSE THE DNA SAMPLE WAS NOT COLLECTED IN WEEK 0 BUT WAS COLLECTED IN WEEK 4","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 12:53:44.090","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197420","ES100042005","6330","2974354","Screening","3","Date of Visit","32496456","0","27 Mar 2026 12:35:26:070","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 12:35:26.070","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197420","ES100042005","6330","3063936","Week I-0 (1)","7","Date of Visit","33683833","0","20 Apr 2026 13:32:10:370","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 13:32:10.370","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197420","ES100042005","6330","3078240","Week I-2 (1)","8","Date of Visit","33905552","0","04 May 2026 08:28:32:777","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 08:28:32.777","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197420","ES100042005","6330","3126639","Week I-4 (1)","9","Date of Visit","34542534","0","14 May 2026 12:33:14:510","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 12:33:14.510","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","204884","ES100042006","6330","3133469","Screening","3","Date of Visit","34661033","0","07 May 2026 15:02:28:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 15:02:28.030","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","204890","ES100042007","6330","3133597","Screening","3","Date of Visit","34663180","0","08 May 2026 13:03:13:643","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 13:03:13.643","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","200266","ES100052001","6330","3034782","Screening","3","Date of Visit","33303759","0","26 Mar 2026 11:27:58:370","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 11:27:58.370","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","200266","ES100052001","6330","3079314","Week I-0 (1)","7","Date of Visit","33921915","0","21 Apr 2026 08:28:50:810","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 08:28:50.810","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","200266","ES100052001","6330","3079592","Week I-2 (1)","8","Date of Visit","33926132","0","05 May 2026 07:12:37:250","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 07:12:37.250","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","200266","ES100052001","6330","3129095","Week I-4 (1)","9","Date of Visit","34584537","0","19 May 2026 07:43:43:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 07:43:43.133","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","202369","ES100052002","6330","3076409","Screening","3","Date of Visit","33873154","0","20 Apr 2026 09:18:35:460","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 09:18:35.460","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","203827","ES100052003","6330","3111128","Screening","3","Date of Visit","34310339","0","28 Apr 2026 05:58:47:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 05:58:47.097","","" +"ESP","9366","DD5-ES10007","HOSP. DE CABUENES","204131","ES100072001","6330","3116766","Screening","3","Date of Visit","34395899","0","30 Apr 2026 10:31:29:467","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 10:31:29.467","","" +"ESP","9366","DD5-ES10007","HOSP. DE CABUENES","204131","ES100072001","6330","3200371","Week I-0 (1)","7","Date of Visit","35147807","0","22 May 2026 12:40:47:263","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:40:47.263","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2846286","Screening","3","Date of Visit","30770601","0","19 Dec 2025 13:43:44:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251219 13:43:44.560","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2899912","Week I-0 (1)","7","Date of Visit","31464791","0","28 Jan 2026 12:03:32:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 12:03:32.337","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2900600","Week I-2 (1)","8","Date of Visit","31471872","0","11 Feb 2026 11:54:10:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 11:54:10.567","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2929316","Week I-4 (1)","9","Date of Visit","31854524","0","23 Feb 2026 11:13:43:500","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 11:13:43.500","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2951185","Week I-8 (1)","10","Date of Visit","32174406","0","25 Mar 2026 11:43:05:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 11:43:05.173","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","3032390","Week I-12 (1)","11","Date of Visit","33272923","0","19 May 2026 11:23:14:083","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 11:23:14.083","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","3077227","Week M-4 (1)","15","Date of Visit","33886791","0","19 May 2026 11:23:33:670","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 11:23:33.670","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","3077235","Unscheduled 20260420","59","Date of Visit","33886976","0","20 Apr 2026 09:55:52:357","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","REGISTRER MEASUREMENT OF HEIGH AT I-12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 09:55:52.357","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2872637","Screening","3","Date of Visit","31120366","0","12 Jan 2026 16:12:27:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260112 16:12:27.630","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2890853","Week I-0 (1)","7","Date of Visit","31343213","0","05 Feb 2026 16:32:05:393","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 16:32:05.393","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2908371","Week I-2 (1)","8","Date of Visit","31568784","0","05 Feb 2026 11:32:12:480","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 11:32:12.480","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2917294","Week I-4 (1)","9","Date of Visit","31688830","0","18 Feb 2026 09:23:04:240","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260218 09:23:04.240","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2943775","Week I-8 (1)","10","Date of Visit","32074060","0","18 Mar 2026 14:03:12:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 14:03:12.597","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","3017088","Week I-12 (1)","11","Date of Visit","33079534","0","15 Apr 2026 08:34:45:787","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 08:34:45.787","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","3066873","Week M-4 (1)","15","Date of Visit","33723378","0","13 May 2026 11:34:26:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 11:34:26.753","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","199794","ES100112002","6330","3025359","Screening","3","Date of Visit","33179626","0","07 Apr 2026 18:05:13:157","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 18:05:13.157","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","198403","FR100012001","6330","2996659","Screening","3","Date of Visit","32807815","0","18 May 2026 12:03:09:607","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 12:03:09.607","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","202860","FR100012002","6330","3087339","Screening","3","Date of Visit","34042668","0","19 May 2026 10:48:12:850","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 10:48:12.850","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","204143","FR100012003","6330","3116984","Screening","3","Date of Visit","34398981","0","21 May 2026 14:28:36:117","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 14:28:36.117","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","204143","FR100012003","6330","3205876","Week I-0 (1)","7","Date of Visit","35221401","0","21 May 2026 14:28:36:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 14:28:36.130","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","189970","FR100022001","6330","2815039","Screening","3","Date of Visit","30362780","0","05 Feb 2026 08:37:33:613","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 08:37:33.613","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2821476","Screening","3","Date of Visit","30449661","0","10 Dec 2025 13:14:28:467","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251210 13:14:28.467","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2863632","Week I-0 (1)","7","Date of Visit","31011888","0","08 Jan 2026 09:52:37:800","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260108 09:52:37.800","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2868034","Week I-2 (1)","8","Date of Visit","31066461","0","20 Jan 2026 08:55:43:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 08:55:43.737","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2887207","Week I-4 (1)","9","Date of Visit","31299118","0","04 Feb 2026 08:57:45:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 08:57:45.020","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2913951","Week I-8 (1)","10","Date of Visit","31640648","0","03 Mar 2026 09:04:27:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 09:04:27.647","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2969589","Week I-12 (1)","11","Date of Visit","32428576","0","30 Mar 2026 14:19:34:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 14:19:34.160","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","3040901","Week M-4 (1)","15","Date of Visit","33384561","0","30 Apr 2026 06:59:30:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 06:59:30.827","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2831076","Screening","3","Date of Visit","30572192","0","15 Dec 2025 11:05:02:360","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251215 11:05:02.360","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2862377","Week I-0 (1)","7","Date of Visit","30997005","0","08 Jan 2026 13:09:34:467","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260108 13:09:34.467","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2868514","Week I-2 (1)","8","Date of Visit","31072437","0","20 Jan 2026 09:26:51:383","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 09:26:51.383","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2887340","Week I-4 (1)","9","Date of Visit","31300700","0","23 Jan 2026 08:02:15:987","Tier 5","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 21JAN2026 > WORSENING OF UC","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 08:02:15.987","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2894205","Induction Early Discontinuation (1)","12","Date of Visit","31387816","0","23 Jan 2026 08:02:35:533","Tier 5","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 08:02:35.533","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2894206","Induction Safety Follow Up (1)","13","Date of Visit","31387817","0","20 Feb 2026 08:44:06:983","Tier 5","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260220 08:44:06.983","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","2887544","Screening","3","Date of Visit","31302849","0","17 Feb 2026 10:16:57:747","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 10:16:57.747","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","2939689","Week I-0 (1)","7","Date of Visit","32020192","0","17 Feb 2026 10:16:57:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 10:16:57.767","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","2940779","Week I-2 (1)","8","Date of Visit","32035564","0","03 Mar 2026 11:05:36:990","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 11:05:36.990","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","2970385","Week I-4 (1)","9","Date of Visit","32438017","0","16 Mar 2026 15:16:57:250","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 15:16:57.250","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","3010437","Week I-8 (1)","10","Date of Visit","32992086","0","15 Apr 2026 14:11:55:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 14:11:55.267","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","3067885","Week I-12 (1)","11","Date of Visit","33743974","0","11 May 2026 14:40:06:300","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 14:40:06.300","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","2872444","Screening","3","Date of Visit","31118114","0","13 Jan 2026 14:01:52:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260113 14:01:52.537","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","2925693","Week I-0 (1)","7","Date of Visit","31803330","0","12 Feb 2026 15:12:09:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 15:12:09.440","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","2933311","Week I-2 (1)","8","Date of Visit","31918977","0","23 Feb 2026 15:06:47:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 15:06:47.720","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","2951639","Week I-4 (1)","9","Date of Visit","32182479","0","12 Mar 2026 10:17:26:380","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 10:17:26.380","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","3003864","Week I-8 (1)","10","Date of Visit","32901060","0","10 Apr 2026 07:31:52:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 07:31:52.323","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","3059087","Week I-12 (1)","11","Date of Visit","33622837","0","13 May 2026 13:40:31:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 13:40:31.070","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2821396","Screening","3","Date of Visit","30448801","0","11 Dec 2025 14:58:46:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251211 14:58:46.283","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2885546","Week I-0 (1)","7","Date of Visit","31279491","0","20 Jan 2026 14:50:10:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 14:50:10.623","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2888506","Week I-2 (1)","8","Date of Visit","31314864","0","02 Feb 2026 14:32:38:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 14:32:38.913","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2909249","Week I-4 (1)","9","Date of Visit","31580204","0","17 Feb 2026 10:10:36:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 10:10:36.350","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2940831","Week I-8 (1)","10","Date of Visit","32036243","0","15 Apr 2026 09:24:20:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 09:24:20.717","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","3067001","Week I-12 (1)","11","Date of Visit","33725408","0","17 Apr 2026 13:59:01:233","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 13:59:01.233","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","3074667","Week M-4 (1)","15","Date of Visit","33849293","0","07 May 2026 14:08:07:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 14:08:07.400","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","2932778","Screening","3","Date of Visit","31910077","0","16 Feb 2026 10:29:43:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 10:29:43.447","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","3004250","Week I-0 (1)","7","Date of Visit","32908382","0","13 Mar 2026 12:44:08:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 12:44:08.680","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","3006910","Week I-2 (1)","8","Date of Visit","32945889","0","27 Mar 2026 13:58:39:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 13:58:39.187","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","3038432","Week I-4 (1)","9","Date of Visit","33354272","0","10 Apr 2026 09:41:34:933","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 09:41:34.933","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","3059553","Week I-8 (1)","10","Date of Visit","33627215","0","11 May 2026 14:54:23:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 14:54:23.560","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","190687","FR100052001","6330","2831619","Screening","3","Date of Visit","30579697","0","21 Jan 2026 13:16:39:893","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 13:16:39.893","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","2922313","Screening","3","Date of Visit","31755599","0","06 Mar 2026 13:34:25:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 13:34:25.657","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","2978940","Week I-0 (1)","7","Date of Visit","32553854","0","06 Mar 2026 13:35:05:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 13:35:05.400","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","2982134","Week I-2 (1)","8","Date of Visit","32595963","0","20 Mar 2026 14:55:09:873","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 14:55:09.873","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","3022894","Week I-4 (1)","9","Date of Visit","33145284","0","01 Apr 2026 13:48:14:897","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 13:48:14.897","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","3045359","Week I-8 (1)","10","Date of Visit","33445872","0","13 Apr 2026 10:55:45:507","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 9APR2026 > RECTOCOLITIS FLARE","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 10:55:45.507","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","3058098","Induction Early Discontinuation (1)","12","Date of Visit","33609363","0","09 Apr 2026 15:49:56:917","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 15:49:56.917","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195418","FR100052003","6330","2933109","Screening","3","Date of Visit","31915885","0","16 Mar 2026 13:11:39:380","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 13:11:39.380","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","2940745","Screening","3","Date of Visit","32035290","0","18 Mar 2026 11:04:18:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 11:04:18.413","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3009474","Week I-0 (1)","7","Date of Visit","32978123","0","16 Mar 2026 14:32:53:747","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 14:32:53.747","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3010324","Week I-2 (1)","8","Date of Visit","32990941","0","30 Mar 2026 16:30:14:523","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 16:30:14.523","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3041208","Week I-4 (1)","9","Date of Visit","33388764","0","04 May 2026 12:47:53:427","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#003 > 8APR2026 > FLARE UP OF ULCERATIVE COLITIS","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 12:47:53.427","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3060358","Induction Early Discontinuation (1)","12","Date of Visit","33636094","0","20 Apr 2026 11:09:46:360","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 11:09:46.360","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3060359","Induction Safety Follow Up (1)","13","Date of Visit","33636095","0","04 May 2026 12:45:14:750","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 12:45:14.750","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2826843","Screening","3","Date of Visit","30518002","0","11 Dec 2025 12:11:27:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251211 12:11:27.283","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2862021","Week I-0 (1)","7","Date of Visit","30991502","0","07 Jan 2026 14:51:55:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260107 14:51:55.157","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2866536","Week I-2 (1)","8","Date of Visit","31047152","0","19 Jan 2026 12:54:52:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 12:54:52.147","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2885328","Week I-4 (1)","9","Date of Visit","31277129","0","19 Mar 2026 09:53:30:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 09:53:30.717","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2906753","Week I-8 (1)","10","Date of Visit","31546157","0","04 Mar 2026 14:50:25:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 14:50:25.120","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2977238","Week I-12 (1)","11","Date of Visit","32532568","0","13 Apr 2026 13:03:42:417","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 13:03:42.417","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","3062242","Week M-4 (1)","15","Date of Visit","33659710","0","05 May 2026 07:03:53:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 07:03:53.107","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2872273","Screening","3","Date of Visit","31115805","0","28 Jan 2026 08:43:58:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 08:43:58.283","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2908498","Week I-0 (1)","7","Date of Visit","31571064","0","03 Feb 2026 10:07:44:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 10:07:44.227","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2910947","Week I-2 (1)","8","Date of Visit","31598058","0","04 Mar 2026 14:05:18:633","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 14:05:18.633","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2977124","Week I-4 (1)","9","Date of Visit","32531420","0","04 Mar 2026 14:08:01:723","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 14:08:01.723","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2977129","Week I-8 (1)","10","Date of Visit","32531505","0","27 Mar 2026 09:20:45:360","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 09:20:45.360","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","3037803","Week I-12 (1)","11","Date of Visit","33346363","0","05 May 2026 07:54:52:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 07:54:52.787","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","2951220","Screening","3","Date of Visit","32174797","0","16 Mar 2026 13:06:55:903","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 13:06:55.903","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","3009516","Week I-0 (1)","7","Date of Visit","32978650","0","16 Mar 2026 13:34:42:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 13:34:42.147","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","3010140","Week I-2 (1)","8","Date of Visit","32988359","0","09 Apr 2026 13:59:15:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 13:59:15.780","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","3057835","Week I-4 (1)","9","Date of Visit","33606130","0","15 Apr 2026 07:37:47:367","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 07:37:47.367","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","3066689","Week I-8 (1)","10","Date of Visit","33720195","0","11 May 2026 13:31:31:450","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 13:31:31.450","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196752","FR100062004","6330","2960181","Screening","3","Date of Visit","32318307","0","25 Mar 2026 08:41:00:207","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 08:41:00.207","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196752","FR100062004","6330","3025186","Week I-0 (1)","7","Date of Visit","33177421","0","25 Mar 2026 08:41:00:290","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 08:41:00.290","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196752","FR100062004","6330","3025622","Week I-2 (1)","8","Date of Visit","33182706","0","09 Apr 2026 14:12:42:800","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 14:12:42.800","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196752","FR100062004","6330","3057868","Week I-4 (1)","9","Date of Visit","33606623","0","23 Apr 2026 13:08:02:390","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 13:08:02.390","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","191747","FR100072001","6330","2853910","Screening","3","Date of Visit","30889277","0","06 Feb 2026 14:06:27:260","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 14:06:27.260","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","196329","FR100072002","6330","2951495","Screening","3","Date of Visit","32179815","0","16 Mar 2026 15:38:11:867","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 15:38:11.867","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","199995","FR100072003","6330","3029333","Screening","3","Date of Visit","33230236","0","09 Apr 2026 13:17:42:677","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 13:17:42.677","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","199995","FR100072003","6330","3124766","Week I-0 (1)","7","Date of Visit","34513817","0","13 May 2026 13:52:51:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 13:52:51.657","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","199995","FR100072003","6330","3192058","Week I-2 (1)","8","Date of Visit","35027059","0","13 May 2026 14:01:31:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 14:01:31.517","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2867999","Screening","3","Date of Visit","31065900","0","19 Feb 2026 16:36:06:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 16:36:06.020","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2896419","Week I-0 (1)","7","Date of Visit","31419986","0","19 Feb 2026 16:39:16:610","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 16:39:16.610","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2896818","Week I-2 (1)","8","Date of Visit","31424810","0","19 Feb 2026 16:39:57:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 16:39:57.153","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2929679","Week I-4 (1)","9","Date of Visit","31860028","0","23 Feb 2026 12:36:58:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 12:36:58.277","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2951350","Week I-8 (1)","10","Date of Visit","32176322","0","28 Apr 2026 07:39:47:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 07:39:47.723","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","3113830","Week I-12 (1)","11","Date of Visit","34346431","0","29 Apr 2026 15:42:07:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 15:42:07.723","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2947325","Unscheduled 20260108","59","Date of Visit","32123501","0","19 Feb 2026 16:44:17:943","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","08 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA WAS COLLECTD BY MISTAKE ON 08-JAN-206 (CORRESPONDING TO SCREENING VISIT, AFTER SIGNING ICF)","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 16:44:17.943","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2815319","Screening","3","Date of Visit","30366779","0","09 Dec 2025 13:22:47:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251209 13:22:47.297","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2864120","Week I-0 (1)","7","Date of Visit","31018492","0","07 Jan 2026 09:16:08:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260107 09:16:08.533","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2865645","Week I-2 (1)","8","Date of Visit","31036555","0","20 Jan 2026 15:07:15:673","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 15:07:15.673","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2888563","Week I-4 (1)","9","Date of Visit","31315481","0","04 Feb 2026 13:15:37:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 13:15:37.320","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2914850","Week I-8 (1)","10","Date of Visit","31649698","0","25 Mar 2026 11:58:32:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 11:58:32.957","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","3032450","Week I-12 (1)","11","Date of Visit","33273390","0","31 Mar 2026 11:59:47:543","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 11:59:47.543","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","3043057","Week M-4 (1)","15","Date of Visit","33409570","0","29 Apr 2026 13:20:40:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 13:20:40.677","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2831807","Screening","3","Date of Visit","30582295","0","24 Feb 2026 15:08:43:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 15:08:43.147","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2890100","Week I-0 (1)","7","Date of Visit","31333621","0","21 Jan 2026 14:06:03:637","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 14:06:03.637","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2891013","Week I-2 (1)","8","Date of Visit","31345103","0","02 Feb 2026 14:38:27:663","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 14:38:27.663","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2909260","Week I-4 (1)","9","Date of Visit","31580368","0","24 Feb 2026 14:11:20:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 14:11:20.767","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2955343","Week I-8 (1)","10","Date of Visit","32245065","0","25 Mar 2026 12:06:15:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 12:06:15.920","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","3032469","Week I-12 (1)","11","Date of Visit","33273566","0","14 Apr 2026 07:54:25:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 07:54:25.247","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","3063997","Week M-4 (1)","15","Date of Visit","33685119","0","11 May 2026 11:13:15:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 11:13:15.530","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2842554","Screening","3","Date of Visit","30716965","0","19 Dec 2025 13:45:51:933","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251219 13:45:51.933","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2898560","Week I-0 (1)","7","Date of Visit","31445480","0","29 Jan 2026 09:21:02:283","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 09:21:02.283","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2902374","Week I-2 (1)","8","Date of Visit","31492240","0","10 Feb 2026 15:08:52:267","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 15:08:52.267","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2926843","Week I-4 (1)","9","Date of Visit","31821171","0","24 Feb 2026 14:25:21:027","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 14:25:21.027","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2955367","Week I-8 (1)","10","Date of Visit","32246138","0","25 Mar 2026 12:11:42:973","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 12:11:42.973","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","3032479","Week I-12 (1)","11","Date of Visit","33273740","0","18 May 2026 13:01:42:493","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 13:01:42.493","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","3199320","Week M-4 (1)","15","Date of Visit","35132884","0","19 May 2026 12:25:45:897","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 12:25:45.897","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2863938","Screening","3","Date of Visit","31015862","0","07 Jan 2026 09:36:33:650","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260107 09:36:33.650","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2910638","Week I-0 (1)","7","Date of Visit","31595074","0","03 Feb 2026 13:32:34:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 13:32:34.897","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2912476","Week I-2 (1)","8","Date of Visit","31623852","0","24 Feb 2026 14:37:52:137","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 14:37:52.137","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2955385","Week I-4 (1)","9","Date of Visit","32246342","0","04 Mar 2026 12:56:04:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 12:56:04.127","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2976976","Week I-8 (1)","10","Date of Visit","32529669","0","31 Mar 2026 13:26:33:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 13:26:33.763","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","3043253","Week I-12 (1)","11","Date of Visit","33412060","0","29 Apr 2026 11:11:13:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 11:11:13.350","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2872200","Screening","3","Date of Visit","31115033","0","13 Jan 2026 14:26:22:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260113 14:26:22.790","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2925816","Week I-0 (1)","7","Date of Visit","31804628","0","11 Feb 2026 13:31:16:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 13:31:16.530","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2929589","Week I-2 (1)","8","Date of Visit","31858663","0","24 Feb 2026 14:47:17:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 14:47:17.323","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2955428","Week I-4 (1)","9","Date of Visit","32246835","0","11 Mar 2026 08:16:21:783","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 08:16:21.783","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2999670","Week I-8 (1)","10","Date of Visit","32845600","0","16 Apr 2026 13:12:54:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 13:12:54.547","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","3070603","Week I-12 (1)","11","Date of Visit","33785966","0","05 May 2026 12:46:20:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 12:46:20.183","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","2900142","Screening","3","Date of Visit","31466873","0","19 May 2026 13:45:37:790","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 13:45:37.790","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","3013473","Week I-0 (1)","7","Date of Visit","33031085","0","31 Mar 2026 08:21:49:110","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 08:21:49.110","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","3042186","Week I-2 (1)","8","Date of Visit","33400674","0","31 Mar 2026 13:51:42:620","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 13:51:42.620","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","3043303","Week I-4 (1)","9","Date of Visit","33412913","0","16 Apr 2026 12:58:56:400","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 12:58:56.400","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","3070527","Week I-8 (1)","10","Date of Visit","33785029","0","19 May 2026 13:55:47:143","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 13:55:47.143","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","194365","FR100092007","6330","2910970","Screening","3","Date of Visit","31598302","0","12 Feb 2026 14:30:15:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 14:30:15.043","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","194365","FR100092007","6330","2970423","Week I-0 (1)","7","Date of Visit","32438390","0","04 Mar 2026 14:09:38:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 14:09:38.853","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","194365","FR100092007","6330","2977134","Week I-2 (1)","8","Date of Visit","32531548","0","31 Mar 2026 14:00:07:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 14:00:07.623","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","194365","FR100092007","6330","3043318","Week I-4 (1)","9","Date of Visit","33413094","0","31 Mar 2026 14:05:19:527","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 14:05:19.527","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","2931559","Screening","3","Date of Visit","31891199","0","12 Feb 2026 14:16:27:507","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 14:16:27.507","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","2965406","Week I-0 (1)","7","Date of Visit","32375137","0","16 Apr 2026 12:53:19:683","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 12:53:19.683","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","2974556","Week I-2 (1)","8","Date of Visit","32499174","0","01 Apr 2026 08:44:37:293","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 08:44:37.293","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","3044650","Week I-4 (1)","9","Date of Visit","33436978","0","01 Apr 2026 08:53:11:930","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 08:53:11.930","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","3044679","Week I-8 (1)","10","Date of Visit","33437258","0","29 Apr 2026 09:00:08:813","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 09:00:08.813","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195772","FR100092009","6330","2939422","Screening","3","Date of Visit","32016254","0","25 Feb 2026 14:04:24:567","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 14:04:24.567","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195772","FR100092009","6330","2989895","Week I-0 (1)","7","Date of Visit","32709664","0","09 Mar 2026 15:25:49:797","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 15:25:49.797","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195772","FR100092009","6330","2994954","Week I-2 (1)","8","Date of Visit","32783387","0","01 Apr 2026 11:37:05:600","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 11:37:05.600","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195772","FR100092009","6330","3045058","Week I-4 (1)","9","Date of Visit","33441988","0","16 Apr 2026 12:47:39:660","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 12:47:39.660","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","196321","FR100092010","6330","2951343","Screening","3","Date of Visit","32176168","0","01 Apr 2026 12:20:19:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 12:20:19.150","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","196321","FR100092010","6330","3029206","Week I-0 (1)","7","Date of Visit","33228575","0","16 Apr 2026 12:24:24:487","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 12:24:24.487","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","196321","FR100092010","6330","3070429","Week I-2 (1)","8","Date of Visit","33783831","0","16 Apr 2026 12:30:26:510","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 12:30:26.510","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","196321","FR100092010","6330","3070445","Week I-4 (1)","9","Date of Visit","33783990","0","22 Apr 2026 08:05:15:813","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 08:05:15.813","","" +"FRA","9121","DD5-FR10010","CHU de Clermont Ferrand - Site Estaing","193256","FR100102001","6330","2886978","Screening","3","Date of Visit","31295934","0","04 Mar 2026 14:18:51:277","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 14:18:51.277","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2837791","Screening","3","Date of Visit","30661325","0","17 Dec 2025 09:21:50:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251217 09:21:50.173","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2890016","Week I-0 (1)","7","Date of Visit","31332558","0","21 Jan 2026 14:09:56:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 14:09:56.507","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2891021","Week I-2 (1)","8","Date of Visit","31345186","0","04 Feb 2026 09:00:48:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 09:00:48.680","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2913954","Week I-4 (1)","9","Date of Visit","31640742","0","18 Feb 2026 07:59:54:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260218 07:59:54.027","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2943553","Week I-8 (1)","10","Date of Visit","32071387","0","18 Mar 2026 08:38:19:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 08:38:19.207","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","3015743","Week I-12 (1)","11","Date of Visit","33060530","0","15 Apr 2026 11:25:53:020","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 11:25:53.020","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","3067315","Week M-4 (1)","15","Date of Visit","33732442","0","13 May 2026 08:45:23:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 08:45:23.020","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2842276","Screening","3","Date of Visit","30713998","0","18 Dec 2025 15:31:17:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251218 15:31:17.547","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2887385","Week I-0 (1)","7","Date of Visit","31301216","0","20 Jan 2026 11:17:04:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 11:17:04.930","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2887740","Week I-2 (1)","8","Date of Visit","31305076","0","03 Feb 2026 10:30:30:947","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 10:30:30.947","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2910990","Week I-4 (1)","9","Date of Visit","31598797","0","17 Feb 2026 09:23:26:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 09:23:26.107","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2940698","Week I-8 (1)","10","Date of Visit","32034732","0","17 Mar 2026 12:24:38:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 12:24:38.567","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","3013617","Week I-12 (1)","11","Date of Visit","33033276","0","14 Apr 2026 14:07:45:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 14:07:45.163","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","3065511","Week M-4 (1)","15","Date of Visit","33704188","0","12 May 2026 10:50:31:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 10:50:31.537","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","192383","FR100112003","6330","2868303","Screening","3","Date of Visit","31069600","0","03 Feb 2026 08:25:28:040","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 08:25:28.040","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196070","FR100112004","6330","2946049","Screening","3","Date of Visit","32104288","0","19 Feb 2026 13:40:00:030","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 13:40:00.030","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196070","FR100112004","6330","3048135","Week I-0 (1)","7","Date of Visit","33486486","0","07 Apr 2026 13:00:24:663","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 13:00:24.663","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196070","FR100112004","6330","3051906","Week I-2 (1)","8","Date of Visit","33530606","0","15 Apr 2026 11:09:28:410","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 11:09:28.410","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196070","FR100112004","6330","3067263","Week I-4 (1)","9","Date of Visit","33731206","0","30 Apr 2026 08:26:27:780","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 08:26:27.780","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196433","FR100112005","6330","2953589","Screening","3","Date of Visit","32213768","0","27 Feb 2026 10:13:30:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 10:13:30.297","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196433","FR100112005","6330","3044497","Week I-0 (1)","7","Date of Visit","33434424","0","01 Apr 2026 08:45:10:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 08:45:10.113","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196433","FR100112005","6330","3044651","Week I-2 (1)","8","Date of Visit","33437004","0","15 Apr 2026 10:20:34:957","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 10:20:34.957","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196433","FR100112005","6330","3067112","Week I-4 (1)","9","Date of Visit","33727378","0","29 Apr 2026 10:54:49:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 10:54:49.597","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","2919837","Screening","3","Date of Visit","31723780","0","06 May 2026 12:03:05:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 12:03:05.837","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","3024906","Week I-0 (1)","7","Date of Visit","33173353","0","10 Apr 2026 12:16:43:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 12:16:43.607","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","3026234","Week I-2 (1)","8","Date of Visit","33191248","0","10 Apr 2026 10:08:17:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 10:08:17.783","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","3059608","Week I-4 (1)","9","Date of Visit","33627792","0","04 May 2026 07:08:27:603","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 07:08:27.603","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","3126392","Week I-8 (1)","10","Date of Visit","34537118","0","18 May 2026 10:20:33:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 10:20:33.367","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","200320","FR100122002","6330","3035852","Screening","3","Date of Visit","33317702","0","11 May 2026 09:41:22:410","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 09:41:22.410","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","211035","FR100122003","6330","3198030","Screening","3","Date of Visit","35114620","0","22 May 2026 07:56:16:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:56:16.897","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2846488","Screening","3","Date of Visit","30772714","0","09 Jan 2026 07:41:38:643","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 07:41:38.643","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2896313","Week I-0 (1)","7","Date of Visit","31418320","0","26 Jan 2026 11:34:10:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260126 11:34:10.037","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2896488","Week I-2 (1)","8","Date of Visit","31420847","0","09 Feb 2026 10:37:14:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 10:37:14.397","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2922528","Week I-4 (1)","9","Date of Visit","31758882","0","25 Feb 2026 09:44:39:703","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 09:44:39.703","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2957085","Week I-8 (1)","10","Date of Visit","32271577","0","23 Mar 2026 10:04:46:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 10:04:46.160","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","3025320","Week I-12 (1)","11","Date of Visit","33179369","0","14 Apr 2026 08:52:51:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 08:52:51.897","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","3064326","Week M-4 (1)","15","Date of Visit","33688757","0","18 May 2026 09:12:54:853","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","LACK OF RESPONSE TO TREATMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 09:12:54.853","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","3185375","Maintenance Early Discontinuation (1)","27","Date of Visit","34928693","0","18 May 2026 09:13:06:407","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 09:13:06.407","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","3198270","Unscheduled 20260414","59","Date of Visit","35117712","0","18 May 2026 09:04:44:330","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","14 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTED AT WEEK I-12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 09:04:44.330","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2858750","Screening","3","Date of Visit","30950401","0","08 Jan 2026 14:17:17:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260108 14:17:17.813","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2898324","Week I-0 (1)","7","Date of Visit","31443339","0","27 Jan 2026 12:49:30:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260127 12:49:30.927","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2898762","Week I-2 (1)","8","Date of Visit","31448206","0","10 Feb 2026 11:30:55:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 11:30:55.247","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2926141","Week I-4 (1)","9","Date of Visit","31809883","0","25 Feb 2026 10:28:09:723","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 10:28:09.723","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2957191","Week I-8 (1)","10","Date of Visit","32274962","0","24 Mar 2026 09:38:53:920","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 09:38:53.920","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","3028018","Week I-12 (1)","11","Date of Visit","33214464","0","27 Apr 2026 10:30:55:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 10:30:55.667","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","3111697","Week M-4 (1)","15","Date of Visit","34316755","0","18 May 2026 09:18:04:797","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 09:18:04.797","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","3198524","Unscheduled 20260427","59","Date of Visit","35121590","0","18 May 2026 09:17:37:947","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTED AT WEEK I-12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 09:17:37.947","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","2956711","Screening","3","Date of Visit","32266368","0","24 Mar 2026 13:30:24:167","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 13:30:24.167","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","3027828","Week I-0 (1)","7","Date of Visit","33212584","0","24 Mar 2026 14:20:38:067","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 14:20:38.067","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","3029860","Week I-2 (1)","8","Date of Visit","33236712","0","07 Apr 2026 11:49:07:207","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 11:49:07.207","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","3051667","Week I-4 (1)","9","Date of Visit","33527772","0","20 Apr 2026 08:05:40:167","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 08:05:40.167","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","3199351","Unscheduled 20260407","59","Date of Visit","35133219","0","18 May 2026 13:23:17:807","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","07 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTED AT WEEK I-2","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 13:23:17.807","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","2919949","Screening","3","Date of Visit","31724629","0","06 Mar 2026 10:27:13:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 10:27:13.287","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","3003877","Week I-0 (1)","7","Date of Visit","32901314","0","13 Mar 2026 16:07:35:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 16:07:35.710","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","3007472","Week I-2 (1)","8","Date of Visit","32952078","0","26 Mar 2026 11:07:02:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 11:07:02.077","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","3035391","Week I-4 (1)","9","Date of Visit","33311431","0","22 Apr 2026 12:51:30:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 12:51:30.780","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","3056831","Week I-8 (1)","10","Date of Visit","33595244","0","12 May 2026 07:28:05:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 07:28:05.563","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","196881","FR100152001","6330","2962932","Screening","3","Date of Visit","32351217","0","13 Apr 2026 09:18:09:963","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 09:18:09.963","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","196881","FR100152001","6330","3025775","Week I-0 (1)","7","Date of Visit","33186064","0","27 Mar 2026 11:24:18:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 11:24:18.703","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","196881","FR100152001","6330","3038069","Week I-2 (1)","8","Date of Visit","33349876","0","10 Apr 2026 12:43:26:723","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 12:43:26.723","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","196881","FR100152001","6330","3059998","Week I-4 (1)","9","Date of Visit","33632131","0","23 Apr 2026 14:43:42:477","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 14:43:42.477","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","204918","FR100152002","6330","3134103","Screening","3","Date of Visit","34670757","0","06 May 2026 10:37:52:917","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 10:37:52.917","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2829985","Screening","3","Date of Visit","30557668","0","17 Feb 2026 15:44:28:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 15:44:28.077","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2879477","Week I-0 (1)","7","Date of Visit","31206301","0","15 Jan 2026 11:47:42:140","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260115 11:47:42.140","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2879646","Week I-2 (1)","8","Date of Visit","31208583","0","29 Jan 2026 09:43:37:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 09:43:37.693","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2902464","Week I-4 (1)","9","Date of Visit","31492997","0","12 Feb 2026 13:22:19:903","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 13:22:19.903","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2932847","Week I-8 (1)","10","Date of Visit","31911079","0","12 Mar 2026 13:07:44:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 13:07:44.460","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","3004302","Week I-12 (1)","11","Date of Visit","32909207","0","12 May 2026 14:03:15:413","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 14:03:15.413","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","3070540","Week M-4 (1)","15","Date of Visit","33785197","0","12 May 2026 13:46:26:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 13:46:26.180","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2868729","Screening","3","Date of Visit","31074657","0","11 Feb 2026 15:20:12:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 15:20:12.660","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2892523","Week I-0 (1)","7","Date of Visit","31365549","0","22 Jan 2026 13:49:49:690","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 13:49:49.690","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2893111","Week I-2 (1)","8","Date of Visit","31373727","0","05 Feb 2026 15:07:45:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 15:07:45.960","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2918264","Week I-4 (1)","9","Date of Visit","31700792","0","20 Feb 2026 12:58:27:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260220 12:58:27.657","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2949212","Week I-8 (1)","10","Date of Visit","32147077","0","19 Mar 2026 11:13:17:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 11:13:17.033","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","3019211","Week I-12 (1)","11","Date of Visit","33105126","0","23 Apr 2026 12:44:18:423","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 12:44:18.423","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","3088973","Week M-4 (1)","15","Date of Visit","34072468","0","21 May 2026 12:18:09:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 12:18:09.830","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","3115585","Unscheduled 20260423","59","Date of Visit","34377017","0","28 Apr 2026 13:46:55:077","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","23 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLES DONE ON THE DAY OF WEEK I-12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 13:46:55.077","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2880418","Screening","3","Date of Visit","31218811","0","12 Mar 2026 15:49:05:520","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 15:49:05.520","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2922489","Week I-0 (1)","7","Date of Visit","31758174","0","09 Feb 2026 13:17:27:633","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 13:17:27.633","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2923146","Week I-2 (1)","8","Date of Visit","31766712","0","23 Feb 2026 10:57:28:250","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 10:57:28.250","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2951152","Week I-4 (1)","9","Date of Visit","32173403","0","09 Mar 2026 13:15:57:060","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 13:15:57.060","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2994570","Week I-8 (1)","10","Date of Visit","32777073","0","12 May 2026 08:24:12:587","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 08:24:12.587","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3044783","Week I-12 (1)","11","Date of Visit","33439115","0","22 Apr 2026 10:37:55:967","Tier 5","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#011 > 10APR2026 > SEVERE FLARE-UP OF ULCERATIVE COLITIS","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 10:37:55.967","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3084009","Induction Safety Follow Up (1)","13","Date of Visit","33989083","0","20 May 2026 13:24:19:947","Tier 5","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 13:24:19.947","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3065458","Clinical Flare 20260410","25","Date of Visit","33703172","0","14 Apr 2026 13:40:30:537","Tier 5","SDVTier","Yes","Did this visit occur?","","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 13:40:30.537","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3044786","Unscheduled 20260401","59","Date of Visit","33439158","0","02 Apr 2026 12:30:33:677","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","1 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WEEK I-8 VISIT MADE ON SITE AT THE PATIENT'S REQUEST DUE TO WORSENING OF HIS SYMPTOMS. IN ADDITION TO THIS, BLOOD SAMPLES ARE TAKEN UNSCHEDULED.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 12:30:33.677","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3032164","Unscheduled 20260430","59","Date of Visit","34508286","0","30 Apr 2026 10:15:30:110","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","30 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLES NOT DONE BEFORE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 10:15:30.110","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","196428","GB100012001","6330","2953504","Screening","3","Date of Visit","32212778","0","21 Apr 2026 16:10:39:283","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 16:10:39.283","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","201776","GB100012002","6330","3064353","Screening","3","Date of Visit","33689184","0","21 Apr 2026 15:06:09:300","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 15:06:09.300","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","201776","GB100012002","6330","3114518","Week I-0 (1)","7","Date of Visit","34359003","0","28 Apr 2026 11:07:57:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:07:57.100","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","201776","GB100012002","6330","3114798","Week I-2 (1)","8","Date of Visit","34363928","0","12 May 2026 13:29:51:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 13:29:51.090","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","205033","GB100012003","6330","3136480","Screening","3","Date of Visit","34717450","0","08 May 2026 09:50:06:327","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 09:50:06.327","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","210395","GB100012004","6330","3184979","Screening","3","Date of Visit","34924485","0","11 May 2026 16:09:52:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 16:09:52.417","","" +"GBR","8955","DD5-GB10002","Fairfield General Hospital","192792","GB100022001","6330","2877317","Screening","3","Date of Visit","31179852","0","10 Mar 2026 13:52:10:603","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 13:52:10.603","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","198792","GB100052001","6330","3004070","Screening","3","Date of Visit","32904861","0","14 Apr 2026 13:44:19:877","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 13:44:19.877","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","200715","GB100052002","6330","3042693","Screening","3","Date of Visit","33405101","0","31 Mar 2026 12:18:15:740","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 12:18:15.740","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","200715","GB100052002","6330","3114661","Week I-0 (1)","7","Date of Visit","34360809","0","01 May 2026 12:24:28:117","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 12:24:28.117","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","200715","GB100052002","6330","3125572","Week I-2 (1)","8","Date of Visit","34526178","0","13 May 2026 14:25:33:403","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 14:25:33.403","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","201658","GB100052003","6330","3061771","Screening","3","Date of Visit","33654087","0","18 Apr 2026 11:54:56:183","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260418 11:54:56.183","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","201658","GB100052003","6330","3198846","Week I-0 (1)","7","Date of Visit","35126949","0","18 May 2026 14:22:06:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 14:22:06.570","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","202727","GB100052004","6330","3084025","Screening","3","Date of Visit","33989341","0","22 Apr 2026 14:50:45:070","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 14:50:45.070","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2866472","Screening","3","Date of Visit","31046531","0","09 Jan 2026 10:32:42:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 10:32:42.387","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2916419","Week I-0 (1)","7","Date of Visit","31670917","0","05 Feb 2026 12:30:48:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 12:30:48.780","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2917633","Week I-2 (1)","8","Date of Visit","31693268","0","19 Feb 2026 10:34:02:097","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 10:34:02.097","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2946357","Week I-4 (1)","9","Date of Visit","32107964","0","04 Mar 2026 10:42:08:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 10:42:08.940","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2976481","Week I-8 (1)","10","Date of Visit","32523950","0","30 Mar 2026 15:48:05:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 15:48:05.607","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","3041143","Week I-12 (1)","11","Date of Visit","33387563","0","30 Apr 2026 11:42:16:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 11:42:16.773","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","198475","GB100082002","6330","2997711","Screening","3","Date of Visit","32819836","0","14 Apr 2026 12:32:31:593","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 12:32:31.593","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","199228","GB100082003","6330","3013626","Screening","3","Date of Visit","33033326","0","07 May 2026 09:52:29:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 09:52:29.130","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","199228","GB100082003","6330","3087325","Week I-0 (1)","7","Date of Visit","34042564","0","23 Apr 2026 11:16:22:900","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 11:16:22.900","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","199228","GB100082003","6330","3088685","Week I-2 (1)","8","Date of Visit","34066477","0","07 May 2026 09:44:08:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 09:44:08.483","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","199228","GB100082003","6330","3136730","Week I-4 (1)","9","Date of Visit","34722230","0","21 May 2026 12:56:06:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 12:56:06.130","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","192804","GB100132001","6330","2877534","Screening","3","Date of Visit","31182132","0","09 Apr 2026 13:48:27:560","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 13:48:27.560","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","198811","GB100132002","6330","3004659","Screening","3","Date of Visit","32914319","0","17 Mar 2026 12:01:03:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 12:01:03.613","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","198811","GB100132002","6330","3079874","Week I-0 (1)","7","Date of Visit","33930026","0","21 Apr 2026 15:16:36:717","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 15:16:36.717","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","198811","GB100132002","6330","3081613","Week I-2 (1)","8","Date of Visit","33957556","0","06 May 2026 10:44:32:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 10:44:32.000","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","198811","GB100132002","6330","3134113","Week I-4 (1)","9","Date of Visit","34671033","0","19 May 2026 14:57:11:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 14:57:11.437","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","2963308","Screening","3","Date of Visit","32355755","0","05 Mar 2026 10:58:16:490","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 10:58:16.490","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","3019299","Week I-0 (1)","7","Date of Visit","33106048","0","19 Mar 2026 14:51:50:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 14:51:50.200","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","3019978","Week I-2 (1)","8","Date of Visit","33113591","0","06 Apr 2026 13:04:50:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 13:04:50.107","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","3049845","Week I-4 (1)","9","Date of Visit","33505925","0","15 Apr 2026 17:09:01:790","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 17:09:01.790","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","3068257","Week I-8 (1)","10","Date of Visit","33748208","0","22 May 2026 12:17:49:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:17:49.823","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","201143","GR100012002","6330","3051293","Screening","3","Date of Visit","33523313","0","22 May 2026 11:26:00:877","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 11:26:00.877","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191034","GR100032001","6330","2837754","Screening","3","Date of Visit","30660736","0","02 Feb 2026 17:08:53:180","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 17:08:53.180","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2841955","Screening","3","Date of Visit","30710327","0","27 Feb 2026 13:14:26:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 13:14:26.280","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2898367","Week I-0 (1)","7","Date of Visit","31444019","0","27 Jan 2026 17:52:55:470","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260127 17:52:55.470","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2899232","Week I-2 (1)","8","Date of Visit","31454528","0","20 Mar 2026 12:45:47:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 12:45:47.553","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2930421","Week I-4 (1)","9","Date of Visit","31871852","0","27 Feb 2026 18:39:39:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 18:39:39.787","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2964146","Week I-8 (1)","10","Date of Visit","32362957","0","07 Apr 2026 17:01:33:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 17:01:33.050","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","3052323","Week I-12 (1)","11","Date of Visit","33536432","0","22 Apr 2026 17:35:58:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 17:35:58.247","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","3086037","Week M-4 (1)","15","Date of Visit","34023580","0","22 May 2026 08:36:41:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 08:36:41.147","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","2897936","Screening","3","Date of Visit","31438211","0","27 Jan 2026 17:36:00:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260127 17:36:00.580","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","2981491","Week I-0 (1)","7","Date of Visit","32587175","0","06 Mar 2026 20:01:29:733","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 20:01:29.733","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","2988548","Week I-2 (1)","8","Date of Visit","32693517","0","20 Mar 2026 11:29:52:357","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 11:29:52.357","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","3022189","Week I-4 (1)","9","Date of Visit","33137678","0","03 Apr 2026 14:42:09:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 14:42:09.600","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","3048604","Week I-8 (1)","10","Date of Visit","33491202","0","04 May 2026 11:20:14:457","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 11:20:14.457","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","204274","GR100032004","6330","3120169","Screening","3","Date of Visit","34463089","0","30 Apr 2026 11:42:14:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 11:42:14.977","","" +"GRC","9594","DD5-GR10004","Theageneio Cancer Hospital","210590","GR100042001","6330","3188701","Screening","3","Date of Visit","34979204","0","18 May 2026 11:24:55:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 11:24:55.843","","" +"GRC","9594","DD5-GR10004","Theageneio Cancer Hospital","211197","GR100042002","6330","3201145","Screening","3","Date of Visit","35160678","0","19 May 2026 11:30:00:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 11:30:00.303","","" +"GRC","9610","DD5-GR10005","Geniko Nosokomeio Nikaias Peiraia Ag. Panteleimon","201366","GR100052001","6330","3055976","Screening","3","Date of Visit","33582638","0","09 Apr 2026 13:40:37:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 13:40:37.730","","" +"GRC","9610","DD5-GR10005","Geniko Nosokomeio Nikaias Peiraia Ag. Panteleimon","201366","GR100052001","6330","3198046","Week I-0 (1)","7","Date of Visit","35114801","0","18 May 2026 08:16:58:923","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 08:16:58.923","","" +"GRC","9620","DD5-GR10006","HIPPOKRATION HOSPITAL","211164","GR100062001","6330","3200439","Screening","3","Date of Visit","35148715","0","19 May 2026 07:26:04:730","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 07:26:04.730","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","199211","GR100072001","6330","3013293","Screening","3","Date of Visit","33029259","0","17 Mar 2026 13:50:58:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 13:50:58.737","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","199211","GR100072001","6330","3056587","Week I-0 (1)","7","Date of Visit","33592029","0","09 Apr 2026 11:59:39:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 11:59:39.433","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","199211","GR100072001","6330","3057389","Week I-2 (1)","8","Date of Visit","33601318","0","23 Apr 2026 12:49:24:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 12:49:24.093","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","199211","GR100072001","6330","3088988","Week I-4 (1)","9","Date of Visit","34072587","0","08 May 2026 09:22:34:190","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 09:22:34.190","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","210689","GR100072002","6330","3190793","Screening","3","Date of Visit","35007366","0","13 May 2026 08:06:46:073","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 08:06:46.073","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","2892982","Screening","3","Date of Visit","31372233","0","23 Jan 2026 10:21:06:023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 10:21:06.023","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","2978459","Week I-0 (1)","7","Date of Visit","32547780","0","10 Mar 2026 18:30:40:807","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 18:30:40.807","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","2998639","Week I-2 (1)","8","Date of Visit","32833655","0","17 Mar 2026 17:26:39:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 17:26:39.857","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","3014515","Week I-4 (1)","9","Date of Visit","33045778","0","06 Apr 2026 16:12:39:107","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 16:12:39.107","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","3050158","Week I-8 (1)","10","Date of Visit","33508997","0","03 May 2026 04:12:28:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260503 04:12:28.830","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","3194940","Unscheduled 20260428","59","Date of Visit","35068145","0","14 May 2026 15:43:45:300","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","28 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 15:43:45.300","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","195767","HU100012002","6330","2939290","Screening","3","Date of Visit","32013974","0","23 Mar 2026 13:59:40:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 13:59:40.680","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","195767","HU100012002","6330","3039588","Week I-0 (1)","7","Date of Visit","33368784","0","30 Mar 2026 15:37:57:637","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 15:37:57.637","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","195767","HU100012002","6330","3041123","Week I-2 (1)","8","Date of Visit","33387358","0","14 Apr 2026 14:25:45:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 14:25:45.570","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","195767","HU100012002","6330","3065546","Week I-4 (1)","9","Date of Visit","33704663","0","03 May 2026 04:13:33:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260503 04:13:33.027","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","196579","HU100012003","6330","2956652","Screening","3","Date of Visit","32265626","0","14 Apr 2026 16:14:18:947","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 16:14:18.947","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","2999241","Screening","3","Date of Visit","32840864","0","23 Mar 2026 16:10:59:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 16:10:59.037","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","3039531","Week I-0 (1)","7","Date of Visit","33368044","0","30 Mar 2026 16:18:50:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 16:18:50.033","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","3041200","Week I-2 (1)","8","Date of Visit","33388537","0","14 Apr 2026 14:29:57:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 14:29:57.827","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","3065555","Week I-4 (1)","9","Date of Visit","33704754","0","03 May 2026 04:17:55:040","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260503 04:17:55.040","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","3194950","Unscheduled 20260427","59","Date of Visit","35068273","0","14 May 2026 15:54:43:057","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 15:54:43.057","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","199323","HU100012005","6330","3015608","Screening","3","Date of Visit","33058247","0","23 Mar 2026 16:53:54:310","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 16:53:54.310","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","199323","HU100012005","6330","3050850","Week I-0 (1)","7","Date of Visit","33516761","0","12 Apr 2026 15:12:34:170","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260412 15:12:34.170","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","199323","HU100012005","6330","3060860","Week I-2 (1)","8","Date of Visit","33642087","0","23 Apr 2026 11:19:04:207","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 11:19:04.207","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","199323","HU100012005","6330","3088697","Week I-4 (1)","9","Date of Visit","34066578","0","07 May 2026 06:39:45:853","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 06:39:45.853","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","201991","HU100012006","6330","3069274","Screening","3","Date of Visit","33764107","0","14 May 2026 16:09:32:787","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 16:09:32.787","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","201991","HU100012006","6330","3189927","Week I-0 (1)","7","Date of Visit","34997755","0","14 May 2026 16:09:32:873","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 16:09:32.873","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","211180","HU100012007","6330","3200738","Screening","3","Date of Visit","35153328","0","19 May 2026 09:00:41:533","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 09:00:41.533","","" +"HUN","9179","DD5-HU10002","Semmelweis Egyetem","204128","HU100022001","6330","3116714","Screening","3","Date of Visit","34395009","0","29 Apr 2026 09:07:40:117","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 09:07:40.117","","" +"HUN","9179","DD5-HU10002","Semmelweis Egyetem","204146","HU100022002","6330","3117102","Screening","3","Date of Visit","34401134","0","30 Apr 2026 08:37:06:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 08:37:06.940","","" +"HUN","9096","DD5-HU10003","Pannónia Magánorvosi Centrum Kft","197620","HU100032001","6330","2978344","Screening","3","Date of Visit","32546504","0","30 Apr 2026 11:39:05:540","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 11:39:05.540","","" +"HUN","9096","DD5-HU10003","Pannónia Magánorvosi Centrum Kft","200294","HU100032002","6330","3035367","Screening","3","Date of Visit","33310947","0","30 Apr 2026 11:40:52:003","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 MAR 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 11:40:52.003","","" +"HUN","9210","DD5-HU10004","Clinfan Ltd. SMO","197630","HU100042001","6330","2978593","Screening","3","Date of Visit","32549472","0","05 Mar 2026 12:13:19:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 12:13:19.133","","" +"HUN","9210","DD5-HU10004","Clinfan Ltd. SMO","197630","HU100042001","6330","3042045","Week I-0 (1)","7","Date of Visit","33398760","0","31 Mar 2026 13:13:27:923","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 13:13:27.923","","" +"HUN","9210","DD5-HU10004","Clinfan Ltd. SMO","197630","HU100042001","6330","3043214","Week I-2 (1)","8","Date of Visit","33411576","0","15 Apr 2026 08:45:00:510","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 08:45:00.510","","" +"HUN","9210","DD5-HU10004","Clinfan Ltd. SMO","197630","HU100042001","6330","3066891","Week I-4 (1)","9","Date of Visit","33723756","0","28 Apr 2026 06:50:46:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 06:50:46.783","","" +"HUN","9097","DD5-HU10005","Obudai Egeszsegugyi Centrum Kft","201768","HU100052001","6330","3064181","Screening","3","Date of Visit","33686754","0","21 Apr 2026 10:30:14:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 10:30:14.037","","" +"HUN","9237","DD5-HU10008","Debreceni Egyetem Klinikai Kozpont","200313","HU100082001","6330","3035691","Screening","3","Date of Visit","33314716","0","26 Mar 2026 11:42:53:490","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 MAR 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 11:42:53.490","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","197622","HU100092001","6330","2978382","Screening","3","Date of Visit","32546958","0","28 Apr 2026 12:24:49:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 12:24:49.230","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","197622","HU100092001","6330","3050796","Week I-0 (1)","7","Date of Visit","33516324","0","20 Apr 2026 12:01:43:430","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 12:01:43.430","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","197622","HU100092001","6330","3077863","Week I-2 (1)","8","Date of Visit","33900626","0","21 Apr 2026 06:17:23:527","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 06:17:23.527","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","197622","HU100092001","6330","3079204","Week I-4 (1)","9","Date of Visit","33919723","0","05 May 2026 05:34:22:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 05:34:22.437","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","200094","HU100092002","6330","3031377","Screening","3","Date of Visit","33258364","0","20 Apr 2026 13:18:19:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 13:18:19.983","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","200094","HU100092002","6330","3113726","Week I-0 (1)","7","Date of Visit","34343949","0","28 Apr 2026 09:33:18:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 09:33:18.507","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","200094","HU100092002","6330","3114471","Week I-2 (1)","8","Date of Visit","34358453","0","12 May 2026 11:47:11:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 11:47:11.810","","" +"HUN","9858","DD5-HU10011","Vasutegeszsegugyi Nonprofit Kozhasznu Kft","194650","HU100112001","6330","2916966","Screening","3","Date of Visit","31680149","0","06 Apr 2026 13:01:24:030","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 13:01:24.030","","" +"HUN","9858","DD5-HU10011","Vasutegeszsegugyi Nonprofit Kozhasznu Kft","195168","HU100112002","6330","2928479","Screening","3","Date of Visit","31844418","0","06 Apr 2026 13:08:06:827","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 13:08:06.827","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","184344","IL100032001","6330","2683308","Screening","3","Date of Visit","28849850","0","04 Jan 2026 10:57:04:620","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260104 10:57:04.620","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2751913","Screening","3","Date of Visit","29463959","0","04 Jan 2026 17:59:02:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260104 17:59:02.350","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2847318","Week I-0 (1)","7","Date of Visit","30782657","0","04 Jan 2026 18:44:29:970","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260104 18:44:29.970","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2861247","Week I-2 (1)","8","Date of Visit","30981174","0","04 Feb 2026 17:35:02:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 17:35:02.407","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2861248","Week I-4 (1)","9","Date of Visit","30981192","0","04 Feb 2026 17:41:06:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 17:41:06.163","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2915382","Week I-8 (1)","10","Date of Visit","31657701","0","05 May 2026 13:40:17:057","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 13:40:17.057","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","3131881","Week I-12 (1)","11","Date of Visit","34632030","0","05 May 2026 14:12:23:863","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 14:12:23.863","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","3131907","Week M-4 (1)","15","Date of Visit","34632605","0","05 May 2026 13:59:37:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 13:59:37.000","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2847817","Screening","3","Date of Visit","30789439","0","05 May 2026 14:02:52:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 14:02:52.453","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2861735","Week I-0 (1)","7","Date of Visit","30987293","0","15 Feb 2026 09:39:21:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260215 09:39:21.010","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2938602","Week I-2 (1)","8","Date of Visit","32002987","0","15 Feb 2026 09:42:42:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260215 09:42:42.717","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2938603","Week I-4 (1)","9","Date of Visit","32003009","0","15 Feb 2026 09:46:49:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260215 09:46:49.200","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2938604","Week I-8 (1)","10","Date of Visit","32003032","0","05 May 2026 13:41:15:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 13:41:15.320","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","3131885","Week I-12 (1)","11","Date of Visit","34632143","0","07 May 2026 18:25:08:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 18:25:08.680","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","3138179","Week M-4 (1)","15","Date of Visit","34743188","0","07 May 2026 18:33:22:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 18:33:22.723","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","3138155","Unscheduled 20260203","59","Date of Visit","34743013","0","07 May 2026 18:14:25:350","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","03 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNAWAS COLLECTED AFTER TO THE WEEK I-0 VISIT,","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 18:14:25.350","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2728003","Screening","3","Date of Visit","29403550","0","23 Nov 2025 09:19:11:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251123 09:19:11.433","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2831037","Week I-0 (1)","7","Date of Visit","30571620","0","15 Dec 2025 08:34:10:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251215 08:34:10.770","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2831526","Week I-2 (1)","8","Date of Visit","30578474","0","30 Dec 2025 05:20:19:713","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251230 05:20:19.713","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2857786","Week I-4 (1)","9","Date of Visit","30938721","0","13 Jan 2026 06:59:30:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260113 06:59:30.887","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2874160","Week I-8 (1)","10","Date of Visit","31139808","0","09 Feb 2026 05:39:59:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 05:39:59.283","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2921830","Week I-12 (1)","11","Date of Visit","31748503","0","09 Mar 2026 05:38:05:660","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 05:38:05.660","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2950661","Week M-4 (1)","15","Date of Visit","32166400","0","09 Apr 2026 05:51:34:400","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 05:51:34.400","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","3056019","Week M-8 (1)","16","Date of Visit","33583181","0","03 May 2026 05:38:38:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260503 05:38:38.153","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2847330","Screening","3","Date of Visit","30782745","0","23 Dec 2025 12:58:55:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251223 12:58:55.223","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2883267","Week I-0 (1)","7","Date of Visit","31251468","0","20 Jan 2026 09:48:01:470","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 09:48:01.470","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2887406","Week I-2 (1)","8","Date of Visit","31301516","0","04 Feb 2026 12:58:17:793","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 12:58:17.793","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2914814","Week I-4 (1)","9","Date of Visit","31649315","0","16 Feb 2026 13:14:36:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 13:14:36.547","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2939586","Week I-8 (1)","10","Date of Visit","32018449","0","16 Mar 2026 12:50:59:197","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 12:50:59.197","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","3010015","Week I-12 (1)","11","Date of Visit","32985621","0","14 Apr 2026 11:16:00:370","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 11:16:00.370","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","3065052","Week M-4 (1)","15","Date of Visit","33697825","0","11 May 2026 09:06:39:420","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 09:06:39.420","","" +"ISR","9803","DD5-IL10006","Bnai Zion Medical Center","192555","IL100062001","6330","2871928","Screening","3","Date of Visit","31111475","0","26 Jan 2026 07:48:57:610","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260126 07:48:57.610","","" +"ISR","9803","DD5-IL10006","Bnai Zion Medical Center","193851","IL100062002","6330","2899697","Screening","3","Date of Visit","31461568","0","28 Jan 2026 08:11:39:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 08:11:39.597","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","2899959","Screening","3","Date of Visit","31465173","0","28 Jan 2026 12:12:48:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 12:12:48.593","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","2953137","Week I-0 (1)","7","Date of Visit","32206092","0","24 Feb 2026 13:33:08:733","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 13:33:08.733","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","2955202","Week I-2 (1)","8","Date of Visit","32243241","0","13 Mar 2026 06:49:33:620","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 06:49:33.620","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","3005759","Week I-4 (1)","9","Date of Visit","32929099","0","24 Mar 2026 11:43:36:637","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 11:43:36.637","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","3029348","Week I-8 (1)","10","Date of Visit","33230452","0","21 Apr 2026 09:35:18:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 09:35:18.890","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","3079906","Week I-12 (1)","11","Date of Visit","33930459","0","19 May 2026 10:24:06:293","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 10:24:06.293","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2858602","Screening","3","Date of Visit","30948170","0","10 Feb 2026 14:06:45:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 14:06:45.593","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2883248","Week I-0 (1)","7","Date of Visit","31251321","0","18 Jan 2026 11:43:07:390","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260118 11:43:07.390","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2883316","Week I-2 (1)","8","Date of Visit","31251743","0","04 Feb 2026 14:49:36:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 14:49:36.957","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2915105","Week I-4 (1)","9","Date of Visit","31652786","0","17 Feb 2026 13:21:52:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 13:21:52.537","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2941372","Week I-8 (1)","10","Date of Visit","32044442","0","17 Mar 2026 09:06:24:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 09:06:24.760","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","3012794","Week I-12 (1)","11","Date of Visit","33024084","0","15 Apr 2026 06:58:22:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 06:58:22.977","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","3066561","Week M-4 (1)","15","Date of Visit","33718572","0","13 May 2026 08:45:12:777","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 08:45:12.777","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","2921468","Screening","3","Date of Visit","31743754","0","08 Feb 2026 14:31:46:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260208 14:31:46.987","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","2953389","Week I-0 (1)","7","Date of Visit","32210283","0","26 Feb 2026 09:52:48:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 09:52:48.927","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","2959602","Week I-2 (1)","8","Date of Visit","32309626","0","11 Mar 2026 13:05:57:880","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 13:05:57.880","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","3001249","Week I-4 (1)","9","Date of Visit","32867355","0","24 Mar 2026 09:55:17:270","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 09:55:17.270","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","3028085","Week I-8 (1)","10","Date of Visit","33215616","0","21 Apr 2026 07:13:23:220","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 07:13:23.220","","" +"ISR","9405","DD5-IL10012","Schneider Children's Medical Center","203823","IL100121001","6330","3111036","Screening","3","Date of Visit","34309385","0","28 Apr 2026 09:20:12:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 09:20:12.120","","" +"ISR","9405","DD5-IL10012","Schneider Children's Medical Center","203823","IL100121001","6330","3181743","Week I-0 (1)","7","Date of Visit","34887437","0","11 May 2026 09:55:52:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 09:55:52.727","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","201872","IL100131001","6330","3066538","Screening","3","Date of Visit","33718195","0","15 Apr 2026 10:29:22:067","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 10:29:22.067","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","201872","IL100131001","6330","3125966","Week I-0 (1)","7","Date of Visit","34531704","0","03 May 2026 12:33:46:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260503 12:33:46.337","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","201872","IL100131001","6330","3125983","Week I-2 (1)","8","Date of Visit","34532101","0","17 May 2026 09:15:15:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260517 09:15:15.783","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","202336","IL100131002","6330","3075668","Screening","3","Date of Visit","33865397","0","19 Apr 2026 13:47:06:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260419 13:47:06.730","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","202336","IL100131002","6330","3168950","Week I-0 (1)","7","Date of Visit","34840267","0","10 May 2026 13:02:07:057","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260510 13:02:07.057","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","202336","IL100131002","6330","3168968","Week I-2 (1)","8","Date of Visit","34840659","0","24 May 2026 13:06:48:390","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260524 13:06:48.390","","" +"IND","9734","DD5-IN10001","Fortis Memorial Research Institute","202006","IN100012001","6330","3069518","Screening","3","Date of Visit","33768791","0","17 Apr 2026 12:42:24:133","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 12:42:24.133","","" +"IND","9734","DD5-IN10001","Fortis Memorial Research Institute","202006","IN100012001","6330","3128698","Week I-0 (1)","7","Date of Visit","34579338","0","07 May 2026 09:28:25:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 09:28:25.703","","" +"IND","9492","DD5-IN10003","Sir Ganga Ram Hospital","210862","IN100032001","6330","3193790","Screening","3","Date of Visit","35050585","0","14 May 2026 09:26:10:893","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 09:26:10.893","","" +"IND","9492","DD5-IN10003","Sir Ganga Ram Hospital","211161","IN100032002","6330","3200392","Screening","3","Date of Visit","35148125","0","19 May 2026 07:02:31:000","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 07:02:31.000","","" +"IND","9492","DD5-IN10003","Sir Ganga Ram Hospital","211384","IN100032003","6330","3205115","Screening","3","Date of Visit","35212001","0","21 May 2026 06:51:09:047","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 06:51:09.047","","" +"IND","9445","DD5-IN10004","Mazumdar Shaw Medical Centre - Narayana Hrudayalaya Limited","200796","IN100042001","6330","3044351","Screening","3","Date of Visit","33431771","0","06 Apr 2026 04:11:31:777","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 04:11:31.777","","" +"IND","9445","DD5-IN10004","Mazumdar Shaw Medical Centre - Narayana Hrudayalaya Limited","200796","IN100042001","6330","3187550","Week I-0 (1)","7","Date of Visit","34962935","0","16 May 2026 04:18:19:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260516 04:18:19.217","","" +"IND","9541","DD5-IN10005","Indraprastha Apollo Hospital","199819","IN100052001","6330","3026050","Screening","3","Date of Visit","33188997","0","19 May 2026 06:49:22:220","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 06:49:22.220","","" +"IND","9541","DD5-IN10005","Indraprastha Apollo Hospital","199819","IN100052001","6330","3110817","Week I-0 (1)","7","Date of Visit","34306469","0","28 Apr 2026 06:46:39:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 06:46:39.853","","" +"IND","9541","DD5-IN10005","Indraprastha Apollo Hospital","199819","IN100052001","6330","3113590","Week I-2 (1)","8","Date of Visit","34341931","0","12 May 2026 09:20:26:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 09:20:26.757","","" +"IND","9541","DD5-IN10005","Indraprastha Apollo Hospital","204540","IN100052002","6330","3126326","Screening","3","Date of Visit","34535436","0","12 May 2026 05:53:17:040","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 05:53:17.040","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","197669","IN100062001","6330","2979581","Screening","3","Date of Visit","32560266","0","07 Mar 2026 03:50:05:840","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260307 03:50:05.840","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","197669","IN100062001","6330","3048047","Week I-0 (1)","7","Date of Visit","33485497","0","03 Apr 2026 10:58:02:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 10:58:02.297","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","197669","IN100062001","6330","3048246","Week I-2 (1)","8","Date of Visit","33487766","0","23 Apr 2026 10:50:06:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 10:50:06.857","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","197669","IN100062001","6330","3088634","Week I-4 (1)","9","Date of Visit","34065892","0","08 May 2026 09:36:52:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 09:36:52.543","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198406","IN100062002","6330","2996693","Screening","3","Date of Visit","32808233","0","11 Mar 2026 10:38:35:233","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 10:38:35.233","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198406","IN100062002","6330","3049291","Week I-0 (1)","7","Date of Visit","33500062","0","06 Apr 2026 08:42:20:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 08:42:20.950","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198406","IN100062002","6330","3049433","Week I-2 (1)","8","Date of Visit","33501442","0","23 Apr 2026 10:53:49:177","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 10:53:49.177","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198406","IN100062002","6330","3088644","Week I-4 (1)","9","Date of Visit","34066043","0","08 May 2026 11:44:52:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 11:44:52.640","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3000196","Screening","3","Date of Visit","32852136","0","01 Apr 2026 06:07:35:747","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 06:07:35.747","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3050954","Week I-0 (1)","7","Date of Visit","33518460","0","07 Apr 2026 07:39:06:197","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 07:39:06.197","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3051008","Week I-2 (1)","8","Date of Visit","33519142","0","23 Apr 2026 10:55:01:693","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 10:55:01.693","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3088647","Week I-4 (1)","9","Date of Visit","34066084","0","08 May 2026 12:19:05:753","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 12:19:05.753","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3088809","Unscheduled 20260414","59","Date of Visit","34069084","0","23 Apr 2026 11:59:52:710","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","14 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","FOR ADVERSE EVENT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 11:59:52.710","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","199166","IN100062004","6330","3012359","Screening","3","Date of Visit","33017625","0","01 Apr 2026 06:09:04:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 06:09:04.980","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","199166","IN100062004","6330","3053226","Week I-0 (1)","7","Date of Visit","33549678","0","08 Apr 2026 07:44:39:527","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 07:44:39.527","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","199166","IN100062004","6330","3053380","Week I-2 (1)","8","Date of Visit","33551799","0","23 Apr 2026 10:56:50:093","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 10:56:50.093","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","199166","IN100062004","6330","3088652","Week I-4 (1)","9","Date of Visit","34066114","0","08 May 2026 12:30:27:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 12:30:27.180","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200085","IN100062005","6330","3031212","Screening","3","Date of Visit","33255012","0","01 Apr 2026 06:10:24:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 06:10:24.417","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200085","IN100062005","6330","3048821","Unscheduled 20260404","59","Date of Visit","33494973","0","04 Apr 2026 07:15:40:230","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","04 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SCREENING STOOL SAMPLE RETEST FOR STOOL CULTURE,OVA AND PARASITES 1 AND 2 DUE TO SPECIMEN LEAKED IN TRANSIT.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260404 07:15:40.230","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200085","IN100062005","6330","3088903","Unscheduled 20260420","59","Date of Visit","34071708","0","23 Apr 2026 12:18:46:593","Tier 5","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","E-DIARY ISSUE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 12:18:46.593","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200271","IN100062006","6330","3034923","Screening","3","Date of Visit","33304995","0","01 Apr 2026 06:12:10:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 06:12:10.627","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200271","IN100062006","6330","3087183","Week I-0 (1)","7","Date of Visit","34039300","0","23 Apr 2026 11:09:49:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 11:09:49.223","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200271","IN100062006","6330","3088678","Week I-2 (1)","8","Date of Visit","34066389","0","08 May 2026 12:35:41:860","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 12:35:41.860","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200722","IN100062007","6330","3042852","Screening","3","Date of Visit","33407078","0","31 Mar 2026 14:05:26:130","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 14:05:26.130","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200722","IN100062007","6330","3079534","Week I-0 (1)","7","Date of Visit","33925120","0","23 Apr 2026 11:18:13:783","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 11:18:13.783","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200722","IN100062007","6330","3088695","Week I-2 (1)","8","Date of Visit","34066540","0","08 May 2026 12:39:18:820","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 12:39:18.820","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201793","IN100062008","6330","3064680","Screening","3","Date of Visit","33693412","0","14 Apr 2026 11:43:21:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 11:43:21.830","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201793","IN100062008","6330","3138776","Week I-0 (1)","7","Date of Visit","34751870","0","08 May 2026 10:45:04:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 10:45:04.710","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201816","IN100062009","6330","3065024","Screening","3","Date of Visit","33697574","0","14 Apr 2026 11:43:44:760","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 11:43:44.760","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201816","IN100062009","6330","3177995","Week I-0 (1)","7","Date of Visit","34879399","0","11 May 2026 08:05:50:543","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 08:05:50.543","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201894","IN100062010","6330","3067056","Screening","3","Date of Visit","33725953","0","17 Apr 2026 12:13:11:100","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 12:13:11.100","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201915","IN100062011","6330","3067470","Screening","3","Date of Visit","33738468","0","17 Apr 2026 12:05:44:210","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 12:05:44.210","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","202049","IN100062012","6330","3070335","Screening","3","Date of Visit","33782595","0","17 Apr 2026 06:50:08:397","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 06:50:08.397","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","202049","IN100062012","6330","3198277","Week I-0 (1)","7","Date of Visit","35117770","0","19 May 2026 05:54:18:950","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 05:54:18.950","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","202414","IN100062013","6330","3077202","Screening","3","Date of Visit","33886526","0","23 Apr 2026 10:43:06:503","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 10:43:06.503","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","202414","IN100062013","6330","3202711","Week I-0 (1)","7","Date of Visit","35181708","0","20 May 2026 12:12:13:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 12:12:13.613","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","203049","IN100062014","6330","3091605","Screening","3","Date of Visit","34104500","0","25 Apr 2026 05:20:41:887","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260425 05:20:41.887","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","204565","IN100062015","6330","3126831","Screening","3","Date of Visit","34546975","0","04 May 2026 09:12:58:987","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 09:12:58.987","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","204729","IN100062016","6330","3129906","Screening","3","Date of Visit","34595716","0","07 May 2026 12:16:33:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 12:16:33.290","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","210726","IN100062017","6330","3191457","Screening","3","Date of Visit","35017256","0","13 May 2026 11:08:50:183","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 11:08:50.183","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","211181","IN100062018","6330","3200749","Screening","3","Date of Visit","35153416","0","20 May 2026 12:15:28:930","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 12:15:28.930","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","199121","IN100072001","6330","3011433","Screening","3","Date of Visit","33004052","0","07 May 2026 06:35:20:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 06:35:20.667","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","199121","IN100072001","6330","3068789","Week I-0 (1)","7","Date of Visit","33756249","0","06 May 2026 12:48:15:917","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 12:48:15.917","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","199121","IN100072001","6330","3134654","Week I-2 (1)","8","Date of Visit","34682841","0","06 May 2026 12:53:46:243","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 12:53:46.243","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","199121","IN100072001","6330","3134687","Week I-4 (1)","9","Date of Visit","34683074","0","13 May 2026 08:52:18:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 08:52:18.177","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200518","IN100072002","6330","3039725","Screening","3","Date of Visit","33370454","0","06 Apr 2026 04:44:19:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 04:44:19.567","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200518","IN100072002","6330","3116869","Week I-0 (1)","7","Date of Visit","34397387","0","06 May 2026 13:16:44:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 13:16:44.037","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200518","IN100072002","6330","3134756","Week I-2 (1)","8","Date of Visit","34684530","0","14 May 2026 10:49:35:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 10:49:35.577","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200687","IN100072003","6330","3041980","Screening","3","Date of Visit","33397846","0","07 May 2026 04:04:27:550","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 04:04:27.550","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","203805","IN100072004","6330","3110750","Screening","3","Date of Visit","34304741","0","06 May 2026 11:16:30:517","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 11:16:30.517","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","203805","IN100072004","6330","3195769","Week I-0 (1)","7","Date of Visit","35081316","0","15 May 2026 08:37:51:307","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 08:37:51.307","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200241","IN100082001","6330","3034242","Screening","3","Date of Visit","33295085","0","15 Apr 2026 05:34:34:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 05:34:34.130","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200241","IN100082001","6330","3068775","Week I-0 (1)","7","Date of Visit","33755969","0","04 May 2026 10:08:15:150","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 10:08:15.150","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200241","IN100082001","6330","3127048","Week I-2 (1)","8","Date of Visit","34551770","0","04 May 2026 10:21:24:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 10:21:24.317","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200507","IN100082002","6330","3039513","Screening","3","Date of Visit","33367610","0","04 May 2026 11:11:11:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 11:11:11.533","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200507","IN100082002","6330","3066424","Week I-0 (1)","7","Date of Visit","33716108","0","15 Apr 2026 12:14:31:190","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 12:14:31.190","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200507","IN100082002","6330","3067525","Week I-2 (1)","8","Date of Visit","33739270","0","04 May 2026 11:28:26:470","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 11:28:26.470","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200528","IN100082003","6330","3039902","Screening","3","Date of Visit","33373128","0","13 May 2026 06:20:53:653","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 06:20:53.653","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200528","IN100082003","6330","3061157","Week I-0 (1)","7","Date of Visit","33645618","0","04 May 2026 06:28:40:187","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 06:28:40.187","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200528","IN100082003","6330","3126366","Week I-2 (1)","8","Date of Visit","34536437","0","04 May 2026 06:43:02:927","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 06:43:02.927","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200528","IN100082003","6330","3126373","Week I-4 (1)","9","Date of Visit","34536735","0","13 May 2026 12:11:57:290","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 12:11:57.290","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","202365","IN100082004","6330","3076340","Screening","3","Date of Visit","33872115","0","13 May 2026 06:19:58:183","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 06:19:58.183","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","204256","IN100082005","6330","3119813","Screening","3","Date of Visit","34457441","0","04 May 2026 11:32:46:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 11:32:46.830","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","204989","IN100082006","6330","3135797","Screening","3","Date of Visit","34705877","0","12 May 2026 11:30:04:257","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 11:30:04.257","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","210498","IN100082007","6330","3186979","Screening","3","Date of Visit","34952935","0","12 May 2026 05:49:19:117","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 05:49:19.117","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","198395","IN100102001","6330","2996458","Screening","3","Date of Visit","32805212","0","02 May 2026 11:00:59:063","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260502 11:00:59.063","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","198395","IN100102001","6330","3063701","Week I-0 (1)","7","Date of Visit","33680445","0","14 Apr 2026 12:18:22:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 12:18:22.157","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","198395","IN100102001","6330","3065245","Week I-2 (1)","8","Date of Visit","33700271","0","28 Apr 2026 11:53:41:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:53:41.290","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","198395","IN100102001","6330","3115019","Week I-4 (1)","9","Date of Visit","34367450","0","11 May 2026 06:23:38:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 06:23:38.623","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","199194","IN100102002","6330","3012959","Screening","3","Date of Visit","33025734","0","02 May 2026 11:01:25:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260502 11:01:25.287","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","199194","IN100102002","6330","3082741","Week I-0 (1)","7","Date of Visit","33971869","0","22 Apr 2026 09:18:56:123","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 09:18:56.123","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","199194","IN100102002","6330","3083561","Week I-2 (1)","8","Date of Visit","33983172","0","08 May 2026 11:51:35:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 11:51:35.563","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","199194","IN100102002","6330","3168106","Week I-4 (1)","9","Date of Visit","34829128","0","22 May 2026 07:13:33:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:13:33.827","","" +"IND","9450","DD5-IN10014","Gujarat Gastro and Vascular Hospital","201037","IN100142001","6330","3049361","Screening","3","Date of Visit","33500671","0","17 Apr 2026 06:24:35:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 06:24:35.407","","" +"IND","9450","DD5-IN10014","Gujarat Gastro and Vascular Hospital","201037","IN100142001","6330","3187219","Week I-0 (1)","7","Date of Visit","34956726","0","14 May 2026 07:13:04:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 07:13:04.033","","" +"IND","9450","DD5-IN10014","Gujarat Gastro and Vascular Hospital","201645","IN100142002","6330","3061491","Screening","3","Date of Visit","33649848","0","24 Apr 2026 05:06:37:973","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 05:06:37.973","","" +"IND","9450","DD5-IN10014","Gujarat Gastro and Vascular Hospital","211058","IN100142003","6330","3198343","Screening","3","Date of Visit","35118846","0","18 May 2026 07:57:53:510","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 07:57:53.510","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","199890","IN100152001","6330","3027428","Screening","3","Date of Visit","33207179","0","24 Mar 2026 13:18:28:410","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 13:18:28.410","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","199890","IN100152001","6330","3075311","Week I-0 (1)","7","Date of Visit","33861333","0","25 Apr 2026 04:41:51:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260425 04:41:51.853","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","199890","IN100152001","6330","3096131","Week I-2 (1)","8","Date of Visit","34154965","0","07 May 2026 10:38:53:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 10:38:53.597","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","199890","IN100152001","6330","3137009","Week I-4 (1)","9","Date of Visit","34724824","0","19 May 2026 04:25:06:443","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 04:25:06.443","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","205143","IN100152002","6330","3138837","Screening","3","Date of Visit","34752707","0","11 May 2026 06:42:51:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 06:42:51.527","","" +"IND","9512","DD5-IN10018","SUM Ultimate Medicare","201456","IN100182001","6330","3057681","Screening","3","Date of Visit","33604262","0","04 May 2026 08:20:06:847","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 08:20:06.847","","" +"IND","9512","DD5-IN10018","SUM Ultimate Medicare","202324","IN100182002","6330","3075322","Screening","3","Date of Visit","33861413","0","04 May 2026 08:19:41:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 08:19:41.810","","" +"IND","9462","DD5-IN10020","Lisie Hospital","201741","IN100202001","6330","3063608","Screening","3","Date of Visit","33679282","0","22 Apr 2026 06:40:13:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 06:40:13.397","","" +"IND","9713","DD5-IN10022","Fortis Hospital","200933","IN100222001","6330","3047259","Screening","3","Date of Visit","33474212","0","22 Apr 2026 07:34:12:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 07:34:12.160","","" +"IND","9713","DD5-IN10022","Fortis Hospital","200933","IN100222001","6330","3116733","Week I-0 (1)","7","Date of Visit","34395369","0","29 Apr 2026 09:37:46:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 09:37:46.890","","" +"IND","9481","DD5-IN10023","GB Pant Institute of Post Graduate Medical Education & Research","210857","IN100232001","6330","3193712","Screening","3","Date of Visit","35049900","0","14 May 2026 10:21:55:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 10:21:55.267","","" +"IND","9481","DD5-IN10023","GB Pant Institute of Post Graduate Medical Education & Research","210861","IN100232002","6330","3193781","Screening","3","Date of Visit","35050512","0","14 May 2026 10:24:22:740","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 10:24:22.740","","" +"IND","9481","DD5-IN10023","GB Pant Institute of Post Graduate Medical Education & Research","211009","IN100232003","6330","3197342","Screening","3","Date of Visit","35106050","0","16 May 2026 06:52:04:440","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","16 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260516 06:52:04.440","","" +"IND","9543","DD5-IN10024","ALL INDIA INSTITUTE OF MEDICAL SCIENCES","203243","IN100242001","6330","3096236","Screening","3","Date of Visit","34156270","0","28 Apr 2026 08:24:00:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 08:24:00.230","","" +"ITA","9065","DD5-IT10001","Istituto Clinico Humanitas","198405","IT100012001","6330","2996683","Screening","3","Date of Visit","32808075","0","25 Mar 2026 14:09:36:937","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 14:09:36.937","","" +"ITA","9065","DD5-IT10001","Istituto Clinico Humanitas","198405","IT100012001","6330","3079581","Week I-0 (1)","7","Date of Visit","33926008","0","24 Apr 2026 13:38:59:580","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 13:38:59.580","","" +"ITA","9065","DD5-IT10001","Istituto Clinico Humanitas","198405","IT100012001","6330","3092851","Week I-2 (1)","8","Date of Visit","34116928","0","04 May 2026 14:56:46:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 14:56:46.667","","" +"ITA","9065","DD5-IT10001","Istituto Clinico Humanitas","201785","IT100012002","6330","3064541","Screening","3","Date of Visit","33691667","0","23 Apr 2026 14:56:56:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 14:56:56.527","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","2940645","Screening","3","Date of Visit","32033725","0","18 Feb 2026 13:50:43:487","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260218 13:50:43.487","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","3040145","Week I-0 (1)","7","Date of Visit","33376205","0","02 Apr 2026 14:33:32:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 14:33:32.763","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","3047370","Week I-2 (1)","8","Date of Visit","33475822","0","14 Apr 2026 09:47:07:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 09:47:07.440","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","3064609","Week I-4 (1)","9","Date of Visit","33692278","0","28 Apr 2026 10:51:13:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 10:51:13.477","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","3065381","Unscheduled 20260217","59","Date of Visit","33701980","0","14 Apr 2026 13:18:33:500","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","17 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTED ON SCREENING VISIT AND NOT AT WEEK I-0","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 13:18:33.500","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","199332","IT100022002","6330","3015794","Screening","3","Date of Visit","33061119","0","26 Mar 2026 14:42:34:807","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 14:42:34.807","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","199332","IT100022002","6330","3116998","Week I-0 (1)","7","Date of Visit","34399261","0","29 Apr 2026 12:22:44:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 12:22:44.813","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","199332","IT100022002","6330","3118899","Week I-2 (1)","8","Date of Visit","34444770","0","13 May 2026 13:14:19:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 13:14:19.430","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","201879","IT100022003","6330","3066685","Screening","3","Date of Visit","33720111","0","17 Apr 2026 11:54:34:490","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 11:54:34.490","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","202688","IT100022004","6330","3083232","Screening","3","Date of Visit","33978203","0","06 May 2026 11:22:41:390","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 11:22:41.390","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","198766","IT100042001","6330","3003373","Screening","3","Date of Visit","32894634","0","07 May 2026 08:35:17:320","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 08:35:17.320","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","199328","IT100042002","6330","3015727","Screening","3","Date of Visit","33060264","0","27 Apr 2026 14:38:11:343","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 14:38:11.343","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","200107","IT100042003","6330","3031640","Screening","3","Date of Visit","33261408","0","19 May 2026 14:26:16:263","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 14:26:16.263","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","201761","IT100042004","6330","3064087","Screening","3","Date of Visit","33685833","0","27 Apr 2026 14:41:00:330","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 14:41:00.330","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","201761","IT100042004","6330","3136026","Week I-0 (1)","7","Date of Visit","34709467","0","07 May 2026 09:11:14:177","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 09:11:14.177","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","201982","IT100042005","6330","3069092","Screening","3","Date of Visit","33761206","0","19 May 2026 14:34:43:653","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 14:34:43.653","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","210693","IT100042006","6330","3190823","Screening","3","Date of Visit","35007726","0","13 May 2026 13:34:12:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 13:34:12.593","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","211284","IT100042007","6330","3202951","Screening","3","Date of Visit","35184105","0","20 May 2026 08:01:52:823","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 08:01:52.823","","" +"ITA","9135","DD5-IT10005","Fondazione Policlinico Universitario A Gemelli IRCCS","198577","IT100052001","6330","2999868","Screening","3","Date of Visit","32847605","0","02 Apr 2026 12:47:25:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 12:47:25.313","","" +"ITA","9135","DD5-IT10005","Fondazione Policlinico Universitario A Gemelli IRCCS","198577","IT100052001","6330","3091968","Week I-0 (1)","7","Date of Visit","34108612","0","28 Apr 2026 08:34:17:670","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 08:34:17.670","","" +"ITA","9135","DD5-IT10005","Fondazione Policlinico Universitario A Gemelli IRCCS","198577","IT100052001","6330","3114065","Week I-2 (1)","8","Date of Visit","34350997","0","08 May 2026 12:44:50:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 12:44:50.453","","" +"ITA","9205","DD5-IT10011","Azienda Ospedaliera San Camillo-Forlanini","196707","IT100112001","6330","2959281","Screening","3","Date of Visit","32306001","0","23 Mar 2026 14:09:23:443","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 14:09:23.443","","" +"ITA","9169","DD5-IT10013","Azienda Ospedaliero Universitaria Careggi","200809","IT100132001","6330","3044611","Screening","3","Date of Visit","33436254","0","20 May 2026 08:49:00:127","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 08:49:00.127","","" +"ITA","9169","DD5-IT10013","Azienda Ospedaliero Universitaria Careggi","200809","IT100132001","6330","3133846","Week I-0 (1)","7","Date of Visit","34667122","0","06 May 2026 10:43:43:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 10:43:43.877","","" +"ITA","9169","DD5-IT10013","Azienda Ospedaliero Universitaria Careggi","200809","IT100132001","6330","3134111","Week I-2 (1)","8","Date of Visit","34671014","0","20 May 2026 09:01:37:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 09:01:37.317","","" +"ITA","9169","DD5-IT10013","Azienda Ospedaliero Universitaria Careggi","200815","IT100132002","6330","3044735","Screening","3","Date of Visit","33438271","0","02 Apr 2026 09:31:55:030","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 09:31:55.030","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","2908555","Screening","3","Date of Visit","31571740","0","02 Feb 2026 14:37:20:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 14:37:20.287","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","2996576","Week I-0 (1)","7","Date of Visit","32807044","0","10 Mar 2026 15:01:09:007","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 15:01:09.007","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","2998155","Week I-2 (1)","8","Date of Visit","32826192","0","24 Mar 2026 11:49:20:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 11:49:20.717","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","3029402","Week I-4 (1)","9","Date of Visit","33231292","0","09 Apr 2026 09:04:17:227","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 09:04:17.227","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","3037866","Unscheduled 20260327","59","Date of Visit","33346914","0","27 Mar 2026 09:48:19:050","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","STOOL PK COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 09:48:19.050","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194349","IT100172002","6330","2910583","Screening","3","Date of Visit","31594524","0","05 Feb 2026 13:52:51:610","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 13:52:51.610","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194349","IT100172002","6330","3006284","Week I-0 (1)","7","Date of Visit","32936393","0","24 Mar 2026 14:06:12:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 14:06:12.087","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194349","IT100172002","6330","3029812","Week I-2 (1)","8","Date of Visit","33236010","0","27 Mar 2026 09:12:14:943","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 09:12:14.943","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194349","IT100172002","6330","3037757","Week I-4 (1)","9","Date of Visit","33344907","0","10 Apr 2026 10:42:09:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 10:42:09.453","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","2894336","Screening","3","Date of Visit","31389562","0","12 Feb 2026 09:18:56:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 09:18:56.497","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","2961881","Week I-0 (1)","7","Date of Visit","32340217","0","27 Feb 2026 09:52:46:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 09:52:46.247","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","2962747","Week I-2 (1)","8","Date of Visit","32350088","0","16 Mar 2026 05:22:43:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 05:22:43.567","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","3008584","Week I-4 (1)","9","Date of Visit","32965422","0","20 May 2026 02:31:40:427","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 02:31:40.427","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","3196238","Induction Early Discontinuation (1)","12","Date of Visit","35087394","0","15 May 2026 09:37:22:203","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 09:37:22.203","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","3196239","Induction Safety Follow Up (1)","13","Date of Visit","35087395","0","15 May 2026 09:28:02:080","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 09:28:02.080","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","2894363","Screening","3","Date of Visit","31389787","0","16 Mar 2026 09:48:05:143","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 09:48:05.143","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","2947907","Week I-0 (1)","7","Date of Visit","32131794","0","20 Feb 2026 06:08:00:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260220 06:08:00.353","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","2948052","Week I-2 (1)","8","Date of Visit","32133241","0","06 Mar 2026 09:21:35:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 09:21:35.833","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","2981560","Week I-4 (1)","9","Date of Visit","32588040","0","18 Mar 2026 04:13:46:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 04:13:46.393","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","3015090","Week I-8 (1)","10","Date of Visit","33052833","0","17 Apr 2026 10:20:35:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 10:20:35.010","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","3073783","Week I-12 (1)","11","Date of Visit","33839568","0","15 May 2026 08:53:31:643","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 08:53:31.643","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2707616","Screening","3","Date of Visit","29142989","0","15 Dec 2025 02:56:40:917","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251215 02:56:40.917","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2825804","Week I-0 (1)","7","Date of Visit","30506069","0","15 Dec 2025 04:05:38:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251215 04:05:38.647","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2830822","Week I-2 (1)","8","Date of Visit","30569235","0","12 Feb 2026 08:33:55:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 08:33:55.417","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2931287","Week I-4 (1)","9","Date of Visit","31887122","0","12 Feb 2026 08:37:09:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 08:37:09.127","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2931291","Week I-8 (1)","10","Date of Visit","31887219","0","12 Feb 2026 08:40:28:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 08:40:28.913","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2931294","Week I-12 (1)","11","Date of Visit","31887285","0","16 Mar 2026 09:34:55:170","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 09:34:55.170","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","3009305","Week M-4 (1)","15","Date of Visit","32975502","0","01 Apr 2026 06:24:10:917","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 06:24:10.917","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","3044343","Week M-8 (1)","16","Date of Visit","33431740","0","20 May 2026 13:34:26:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 13:34:26.780","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2712598","Screening","3","Date of Visit","29193200","0","15 Dec 2025 05:46:49:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251215 05:46:49.317","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2814136","Week I-0 (1)","7","Date of Visit","30354165","0","15 Dec 2025 06:30:41:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251215 06:30:41.267","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2830954","Week I-2 (1)","8","Date of Visit","30570643","0","12 Feb 2026 08:43:04:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 08:43:04.367","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2931308","Week I-4 (1)","9","Date of Visit","31887450","0","12 Feb 2026 08:46:50:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 08:46:50.463","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2931324","Week I-8 (1)","10","Date of Visit","31887712","0","12 Feb 2026 08:50:20:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 08:50:20.047","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2931337","Week I-12 (1)","11","Date of Visit","31887886","0","17 Mar 2026 02:13:43:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 02:13:43.150","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","3011153","Week M-4 (1)","15","Date of Visit","33000575","0","08 Apr 2026 04:09:51:420","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 04:09:51.420","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","3052769","Week M-8 (1)","16","Date of Visit","33543525","0","22 May 2026 04:33:47:003","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 04:33:47.003","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","2895864","Screening","3","Date of Visit","31412922","0","12 Feb 2026 07:48:56:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 07:48:56.927","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","2933977","Week I-0 (1)","7","Date of Visit","31927409","0","17 Mar 2026 02:55:49:567","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 02:55:49.567","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","3011199","Week I-2 (1)","8","Date of Visit","33001156","0","17 Mar 2026 03:02:01:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 03:02:01.517","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","3011204","Week I-4 (1)","9","Date of Visit","33001508","0","08 Apr 2026 06:44:48:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 06:44:48.760","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","3053176","Week I-8 (1)","10","Date of Visit","33549069","0","10 Apr 2026 05:40:45:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 05:40:45.050","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","3058794","Week I-12 (1)","11","Date of Visit","33619625","0","22 May 2026 05:44:30:203","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 05:44:30.203","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2672290","Screening","3","Date of Visit","28722496","0","12 Nov 2025 04:49:56:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251112 04:49:56.407","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2807306","Week I-0 (1)","7","Date of Visit","30269044","0","08 Dec 2025 06:29:06:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251208 06:29:06.957","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2807555","Week I-2 (1)","8","Date of Visit","30272103","0","23 Dec 2025 02:50:17:797","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251223 02:50:17.797","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2850046","Week I-4 (1)","9","Date of Visit","30822656","0","05 Jan 2026 05:47:10:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260105 05:47:10.623","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2861547","Week I-8 (1)","10","Date of Visit","30984288","0","30 Jan 2026 05:24:34:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 JAN 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260130 05:24:34.890","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2905465","Week I-12 (1)","11","Date of Visit","31532062","0","13 Mar 2026 07:34:26:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 07:34:26.567","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","3005876","Week M-4 (1)","15","Date of Visit","32930444","0","31 Mar 2026 08:55:31:473","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 08:55:31.473","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","3042477","Week M-8 (1)","16","Date of Visit","33403058","0","30 Apr 2026 02:54:50:457","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 02:54:50.457","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","187078","JP100052002","6330","2756964","Screening","3","Date of Visit","29548714","0","15 Jan 2026 01:17:00:787","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260115 01:17:00.787","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2834096","Screening","3","Date of Visit","30615373","0","19 Jan 2026 01:33:35:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 01:33:35.727","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2895881","Week I-0 (1)","7","Date of Visit","31413366","0","30 Jan 2026 06:07:30:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260130 06:07:30.437","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2905533","Week I-2 (1)","8","Date of Visit","31532930","0","09 Feb 2026 06:08:01:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 06:08:01.400","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2921871","Week I-4 (1)","9","Date of Visit","31748829","0","26 Feb 2026 01:07:25:500","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 01:07:25.500","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2958737","Week I-8 (1)","10","Date of Visit","32297346","0","23 Mar 2026 07:47:47:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 07:47:47.683","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","3024791","Week I-12 (1)","11","Date of Visit","33172075","0","30 Apr 2026 07:12:29:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:12:29.833","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","198972","JP100052004","6330","3008291","Screening","3","Date of Visit","32962612","0","18 Mar 2026 04:48:42:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 04:48:42.913","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","198972","JP100052004","6330","3078954","Week I-0 (1)","7","Date of Visit","33916463","0","21 Apr 2026 07:13:05:467","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 07:13:05.467","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","198972","JP100052004","6330","3079341","Week I-2 (1)","8","Date of Visit","33922253","0","07 May 2026 02:01:25:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 02:01:25.753","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","198972","JP100052004","6330","3135612","Week I-4 (1)","9","Date of Visit","34701861","0","18 May 2026 03:21:53:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 03:21:53.980","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2592173","Screening","3","Date of Visit","27823268","0","28 Oct 2025 00:01:40:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251028 00:01:40.137","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2659762","Week I-0 (1)","7","Date of Visit","28588473","0","04 Nov 2025 06:41:02:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251104 06:41:02.543","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2664251","Week I-2 (1)","8","Date of Visit","28635600","0","15 Nov 2025 04:03:08:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251115 04:03:08.207","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2701830","Week I-4 (1)","9","Date of Visit","29079787","0","29 Nov 2025 06:49:31:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251129 06:49:31.973","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2780021","Week I-8 (1)","10","Date of Visit","29857611","0","27 Dec 2025 05:44:04:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251227 05:44:04.977","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2855736","Week I-12 (1)","11","Date of Visit","30913136","0","24 Jan 2026 06:19:53:360","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260124 06:19:53.360","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2895488","Week M-4 (1)","15","Date of Visit","31408946","0","19 Feb 2026 03:17:21:807","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 03:17:21.807","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2945409","Week M-8 (1)","16","Date of Visit","32097337","0","21 Mar 2026 05:27:00:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260321 05:27:00.010","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","3023573","Week M-12 (1)","17","Date of Visit","33156138","0","18 Apr 2026 02:25:10:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260418 02:25:10.743","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","3075276","Week M-16 (1)","18","Date of Visit","33860780","0","16 May 2026 02:57:22:713","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260516 02:57:22.713","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","204506","JP100062002","6330","3125817","Screening","3","Date of Visit","34529514","0","02 May 2026 01:31:58:800","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","02 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260502 01:31:58.800","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2690597","Screening","3","Date of Visit","28943763","0","18 Nov 2025 04:56:45:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251118 04:56:45.630","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2847622","Week I-0 (1)","7","Date of Visit","30787042","0","23 Dec 2025 05:33:38:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251223 05:33:38.897","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2850136","Week I-2 (1)","8","Date of Visit","30823659","0","07 Jan 2026 08:01:42:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260107 08:01:42.717","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2865477","Week I-4 (1)","9","Date of Visit","31034363","0","19 Jan 2026 07:50:42:653","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 07:50:42.653","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2884330","Week I-8 (1)","10","Date of Visit","31265008","0","14 Feb 2026 02:51:08:357","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260214 02:51:08.357","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2938187","Week I-12 (1)","11","Date of Visit","31997113","0","01 Apr 2026 04:24:38:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 04:24:38.647","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","3044232","Week M-4 (1)","15","Date of Visit","33429815","0","25 Apr 2026 02:46:47:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260425 02:46:47.983","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","2909865","Screening","3","Date of Visit","31587693","0","07 May 2026 02:40:10:943","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 02:40:10.943","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","2942967","Week I-0 (1)","7","Date of Visit","32064949","0","25 Feb 2026 01:32:12:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 01:32:12.160","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","2956141","Week I-2 (1)","8","Date of Visit","32256926","0","04 Mar 2026 06:38:57:840","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 06:38:57.840","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","2975827","Week I-4 (1)","9","Date of Visit","32514880","0","17 Mar 2026 07:26:11:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 07:26:11.517","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","3011728","Week I-8 (1)","10","Date of Visit","33007990","0","14 Apr 2026 01:31:52:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 01:31:52.113","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","3063187","Week I-12 (1)","11","Date of Visit","33673833","0","13 May 2026 02:00:24:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 02:00:24.827","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","196944","JP100082003","6330","2964303","Screening","3","Date of Visit","32364748","0","19 May 2026 03:46:38:453","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 03:46:38.453","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","200375","JP100082004","6330","3036877","Screening","3","Date of Visit","33330749","0","01 Apr 2026 00:48:39:783","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 00:48:39.783","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","200375","JP100082004","6330","3060625","Week I-0 (1)","7","Date of Visit","33639574","0","11 Apr 2026 08:46:44:063","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260411 08:46:44.063","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","200375","JP100082004","6330","3060637","Week I-2 (1)","8","Date of Visit","33639970","0","25 Apr 2026 02:15:29:640","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260425 02:15:29.640","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","200375","JP100082004","6330","3096122","Week I-4 (1)","9","Date of Visit","34154644","0","09 May 2026 04:32:06:067","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260509 04:32:06.067","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3052658","Screening","3","Date of Visit","33541580","0","19 May 2026 04:43:31:230","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 04:43:31.230","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3086488","Week I-0 (1)","7","Date of Visit","34030552","0","19 May 2026 04:43:31:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 04:43:31.247","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3125444","Week I-2 (1)","8","Date of Visit","34523639","0","19 May 2026 04:43:31:260","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 04:43:31.260","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3138818","Week I-4 (1)","9","Date of Visit","34752349","0","19 May 2026 09:13:53:713","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 09:13:53.713","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","211008","JP100082006","6330","3197297","Screening","3","Date of Visit","35105462","0","15 May 2026 23:45:26:460","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","16 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 23:45:26.460","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2640943","Screening","3","Date of Visit","28390789","0","27 Oct 2025 06:04:17:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251027 06:04:17.347","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2702482","Week I-0 (1)","7","Date of Visit","29085973","0","17 Nov 2025 08:05:36:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251117 08:05:36.723","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2703752","Week I-2 (1)","8","Date of Visit","29099902","0","01 Dec 2025 07:43:44:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251201 07:43:44.597","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2781142","Week I-4 (1)","9","Date of Visit","29869022","0","15 Dec 2025 08:24:29:260","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251215 08:24:29.260","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2831487","Week I-8 (1)","10","Date of Visit","30578044","0","09 Jan 2026 06:28:47:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 06:28:47.187","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2869495","Week I-12 (1)","11","Date of Visit","31084918","0","10 Feb 2026 07:25:59:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 07:25:59.460","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2924806","Week M-4 (1)","15","Date of Visit","31792952","0","09 Mar 2026 03:53:22:387","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 03:53:22.387","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2989336","Week M-8 (1)","16","Date of Visit","32701342","0","06 Apr 2026 04:19:06:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 04:19:06.583","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","3049119","Week M-12 (1)","17","Date of Visit","33497856","0","11 May 2026 01:21:32:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 01:21:32.527","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","185807","JP100102002","6330","2707421","Screening","3","Date of Visit","29140655","0","28 Nov 2025 01:01:55:127","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251128 01:01:55.127","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2810467","Screening","3","Date of Visit","30307509","0","12 Dec 2025 05:33:24:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251212 05:33:24.227","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2861301","Week I-0 (1)","7","Date of Visit","30981861","0","05 Jan 2026 06:41:49:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260105 06:41:49.767","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2861609","Week I-2 (1)","8","Date of Visit","30984945","0","19 Jan 2026 07:51:33:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 07:51:33.827","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2884335","Week I-4 (1)","9","Date of Visit","31265083","0","02 Feb 2026 03:38:43:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 03:38:43.977","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2907904","Week I-8 (1)","10","Date of Visit","31562886","0","02 Mar 2026 02:30:50:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 02:30:50.707","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2964908","Week I-12 (1)","11","Date of Visit","32370047","0","19 May 2026 00:34:36:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 00:34:36.557","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","3082226","Week M-4 (1)","15","Date of Visit","33965891","0","11 May 2026 02:22:29:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 02:22:29.550","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2831050","Screening","3","Date of Visit","30571761","0","23 Dec 2025 05:57:33:847","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251223 05:57:33.847","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2861377","Week I-0 (1)","7","Date of Visit","30982775","0","05 Jan 2026 08:32:00:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260105 08:32:00.557","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2861775","Week I-2 (1)","8","Date of Visit","30987737","0","19 Jan 2026 07:54:30:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 07:54:30.647","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2884339","Week I-4 (1)","9","Date of Visit","31265116","0","16 Feb 2026 02:15:54:030","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 23JAN2026 > WORSENING OF ULCERATIVE COLITIS","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 02:15:54.030","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2913414","Induction Early Discontinuation (1)","12","Date of Visit","31635708","0","27 Feb 2026 06:05:55:270","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 06:05:55.270","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2938805","Induction Safety Follow Up (1)","13","Date of Visit","32005219","0","25 Mar 2026 02:50:37:457","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 02:50:37.457","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2834464","Screening","3","Date of Visit","30619260","0","23 Dec 2025 05:59:14:763","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251223 05:59:14.763","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2873864","Week I-0 (1)","7","Date of Visit","31135732","0","13 Jan 2026 05:33:44:003","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260113 05:33:44.003","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2874005","Week I-2 (1)","8","Date of Visit","31138136","0","26 Jan 2026 04:51:36:240","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260126 04:51:36.240","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2895927","Week I-4 (1)","9","Date of Visit","31413694","0","16 Feb 2026 00:57:31:433","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 00:57:31.433","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2938761","Week I-8 (1)","10","Date of Visit","32004925","0","10 Mar 2026 03:30:31:583","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 03:30:31.583","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2995653","Week I-12 (1)","11","Date of Visit","32791941","0","13 May 2026 02:18:21:983","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 02:18:21.983","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","3050875","Week M-4 (1)","15","Date of Visit","33517181","0","01 May 2026 02:34:33:940","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 02:34:33.940","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2880820","Screening","3","Date of Visit","31223981","0","02 Feb 2026 08:34:45:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 08:34:45.810","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2940146","Week I-0 (1)","7","Date of Visit","32027372","0","24 Feb 2026 06:39:52:063","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 06:39:52.063","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2952862","Week I-2 (1)","8","Date of Visit","32201980","0","03 Mar 2026 05:53:23:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 05:53:23.510","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2968469","Week I-4 (1)","9","Date of Visit","32409860","0","13 Mar 2026 06:17:49:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 06:17:49.647","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","3005631","Week I-8 (1)","10","Date of Visit","32927767","0","11 May 2026 02:36:10:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 02:36:10.287","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","3169034","Week I-12 (1)","11","Date of Visit","34841395","0","18 May 2026 02:43:50:917","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 02:43:50.917","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","194357","JP100102007","6330","2910742","Screening","3","Date of Visit","31595819","0","10 Mar 2026 05:53:11:383","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 05:53:11.383","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","2925075","Screening","3","Date of Visit","31797245","0","20 Feb 2026 05:57:30:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260220 05:57:30.607","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","2964310","Week I-0 (1)","7","Date of Visit","32364942","0","02 Mar 2026 02:31:54:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 02:31:54.387","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","2964909","Week I-2 (1)","8","Date of Visit","32370070","0","14 Mar 2026 01:29:31:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260314 01:29:31.477","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","3007830","Week I-4 (1)","9","Date of Visit","32956578","0","30 Mar 2026 04:45:16:683","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 04:45:16.683","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","3039500","Week I-8 (1)","10","Date of Visit","33367323","0","30 Apr 2026 01:39:56:997","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 01:39:56.997","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2825795","Screening","3","Date of Visit","30505846","0","22 Dec 2025 02:15:58:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251222 02:15:58.640","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2886362","Week I-0 (1)","7","Date of Visit","31288248","0","21 Jan 2026 06:30:10:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 06:30:10.207","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2889605","Week I-2 (1)","8","Date of Visit","31327514","0","06 Feb 2026 05:10:13:170","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 05:10:13.170","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2919129","Week I-4 (1)","9","Date of Visit","31714595","0","19 Feb 2026 01:00:58:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 01:00:58.223","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2945364","Week I-8 (1)","10","Date of Visit","32096738","0","18 Mar 2026 03:40:40:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 03:40:40.280","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","3015072","Week I-12 (1)","11","Date of Visit","33052593","0","21 Apr 2026 01:53:34:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 01:53:34.897","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","3078946","Week M-4 (1)","15","Date of Visit","33916352","0","18 May 2026 00:53:15:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 00:53:15.577","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2867204","Screening","3","Date of Visit","31056258","0","20 Jan 2026 08:15:52:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 08:15:52.743","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2915743","Week I-0 (1)","7","Date of Visit","31662882","0","06 Feb 2026 05:26:06:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 05:26:06.537","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2919150","Week I-2 (1)","8","Date of Visit","31714950","0","24 Feb 2026 01:29:28:713","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 01:29:28.713","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2952412","Week I-4 (1)","9","Date of Visit","32194751","0","07 Mar 2026 00:47:46:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260307 00:47:46.227","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2988643","Week I-8 (1)","10","Date of Visit","32694732","0","06 Apr 2026 02:57:40:410","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 02:57:40.410","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","3049076","Week I-12 (1)","11","Date of Visit","33497443","0","01 May 2026 01:29:57:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 01:29:57.973","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2621669","Screening","3","Date of Visit","28180731","0","10 Nov 2025 02:51:33:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251110 02:51:33.223","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2724998","Week I-0 (1)","7","Date of Visit","29371824","0","03 Dec 2025 06:04:51:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251203 06:04:51.770","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2788952","Week I-2 (1)","8","Date of Visit","29993534","0","05 Dec 2025 06:11:40:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251205 06:11:40.447","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2803140","Week I-4 (1)","9","Date of Visit","30213457","0","19 Dec 2025 06:37:12:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251219 06:37:12.683","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2844420","Week I-8 (1)","10","Date of Visit","30739264","0","16 Jan 2026 01:33:38:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260116 01:33:38.563","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2880678","Week I-12 (1)","11","Date of Visit","31222302","0","13 Feb 2026 06:50:01:623","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 06:50:01.623","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2934783","Week M-4 (1)","15","Date of Visit","31942196","0","13 Mar 2026 05:41:03:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 05:41:03.720","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","3005548","Week M-8 (1)","16","Date of Visit","32926525","0","09 Apr 2026 03:28:08:633","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 03:28:08.633","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","3055864","Week M-12 (1)","17","Date of Visit","33581682","0","07 May 2026 05:13:18:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 05:13:18.177","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","183886","JP100132002","6330","2672753","Screening","3","Date of Visit","28726728","0","08 Dec 2025 01:10:36:290","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251208 01:10:36.290","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","184175","JP100132003","6330","2679544","Screening","3","Date of Visit","28806063","0","28 Nov 2025 05:18:45:173","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","07 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251128 05:18:45.173","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2867320","Screening","3","Date of Visit","31058317","0","08 Jan 2026 07:59:54:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260108 07:59:54.657","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2915990","Week I-0 (1)","7","Date of Visit","31665542","0","06 Feb 2026 02:03:40:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 02:03:40.323","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2918901","Week I-2 (1)","8","Date of Visit","31710142","0","19 Feb 2026 06:07:03:040","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 06:07:03.040","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2945628","Week I-4 (1)","9","Date of Visit","32099100","0","05 Mar 2026 04:28:07:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 04:28:07.717","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2978091","Week I-8 (1)","10","Date of Visit","32543060","0","02 Apr 2026 06:41:37:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 06:41:37.323","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","3046415","Week I-12 (1)","11","Date of Visit","33462963","0","25 May 2026 05:40:28:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 05:40:28.567","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","3210890","Week M-4 (1)","15","Date of Visit","35287268","0","25 May 2026 05:49:33:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 05:49:33.913","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","210802","JP100151002","6330","3192802","Screening","3","Date of Visit","35035253","0","14 May 2026 01:20:29:660","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 01:20:29.660","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","2876486","Screening","3","Date of Visit","31169351","0","01 May 2026 08:44:42:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 08:44:42.323","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","2901587","Week I-0 (1)","7","Date of Visit","31483971","0","02 Feb 2026 00:57:47:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 00:57:47.570","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","2907794","Week I-2 (1)","8","Date of Visit","31561380","0","13 Mar 2026 02:33:45:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 02:33:45.053","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","3005398","Week I-4 (1)","9","Date of Visit","32924613","0","13 Mar 2026 02:34:17:590","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 02:34:17.590","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","3005399","Week I-8 (1)","10","Date of Visit","32924632","0","25 Mar 2026 01:44:51:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 01:44:51.710","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","3030679","Week I-12 (1)","11","Date of Visit","33249291","0","30 Apr 2026 00:29:21:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 00:29:21.277","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","201724","JP100162002","6330","3063257","Screening","3","Date of Visit","33675011","0","16 Apr 2026 07:00:49:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 07:00:49.597","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","201724","JP100162002","6330","3128630","Week I-0 (1)","7","Date of Visit","34578098","0","05 May 2026 06:22:40:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 06:22:40.437","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","201724","JP100162002","6330","3128892","Week I-2 (1)","8","Date of Visit","34582355","0","19 May 2026 07:17:56:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 07:17:56.147","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","202159","JP100162003","6330","3072446","Screening","3","Date of Visit","33818200","0","19 May 2026 02:21:35:890","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 02:21:35.890","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","202159","JP100162003","6330","3132691","Week I-0 (1)","7","Date of Visit","34642475","0","06 May 2026 08:29:38:567","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 08:29:38.567","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","202159","JP100162003","6330","3133605","Week I-2 (1)","8","Date of Visit","34663425","0","19 May 2026 07:18:17:800","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 07:18:17.800","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","192340","JP100182001","6330","2867224","Screening","3","Date of Visit","31056460","0","09 Feb 2026 05:47:19:763","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 05:47:19.763","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","193223","JP100182002","6330","2886388","Screening","3","Date of Visit","31288540","0","05 Feb 2026 01:55:12:700","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 01:55:12.700","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","2924384","Screening","3","Date of Visit","31785951","0","06 Apr 2026 01:57:59:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 01:57:59.577","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","2995591","Week I-0 (1)","7","Date of Visit","32791145","0","17 Mar 2026 07:10:08:827","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 07:10:08.827","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","3011699","Week I-2 (1)","8","Date of Visit","33007480","0","31 Mar 2026 04:03:23:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 04:03:23.397","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","3041667","Week I-4 (1)","9","Date of Visit","33394480","0","14 Apr 2026 02:36:26:577","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 02:36:26.577","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","3063222","Week I-8 (1)","10","Date of Visit","33674485","0","02 May 2026 02:59:35:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260502 02:59:35.200","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","202356","JP100182004","6330","3076175","Screening","3","Date of Visit","33869731","0","28 Apr 2026 04:23:31:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 04:23:31.393","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2830725","Screening","3","Date of Visit","30567557","0","16 Dec 2025 02:06:57:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251216 02:06:57.830","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2864990","Week I-0 (1)","7","Date of Visit","31028461","0","07 Jan 2026 01:51:00:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260107 01:51:00.223","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2865027","Week I-2 (1)","8","Date of Visit","31029027","0","21 Jan 2026 02:02:43:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 02:02:43.853","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2889383","Week I-4 (1)","9","Date of Visit","31325136","0","04 Feb 2026 07:12:02:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 07:12:02.983","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2913480","Week I-8 (1)","10","Date of Visit","31636508","0","02 Apr 2026 02:07:35:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 02:07:35.400","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","3046027","Week I-12 (1)","11","Date of Visit","33456569","0","02 Apr 2026 02:08:42:963","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 02:08:42.963","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","3046029","Week M-4 (1)","15","Date of Visit","33456595","0","01 May 2026 05:16:34:360","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 05:16:34.360","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","3125482","Maintenance Early Discontinuation (1)","27","Date of Visit","34524323","0","01 May 2026 05:21:04:073","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 05:21:04.073","","" +"JPN","9113","DD5-JP10021","Takagi Clinic","199104","JP100212001","6330","3011114","Screening","3","Date of Visit","32999595","0","17 Mar 2026 06:45:52:257","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 06:45:52.257","","" +"JPN","9113","DD5-JP10021","Takagi Clinic","211542","JP100212002","6330","3208008","Screening","3","Date of Visit","35249353","0","22 May 2026 07:56:24:953","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:56:24.953","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","182603","JP100222001","6330","2648919","Screening","3","Date of Visit","28474098","0","12 Dec 2025 06:58:15:207","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251212 06:58:15.207","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","199103","JP100222002","6330","3011092","Screening","3","Date of Visit","32999211","0","19 Mar 2026 01:41:48:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 01:41:48.657","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","199103","JP100222002","6330","3090021","Week I-0 (1)","7","Date of Visit","34088442","0","24 Apr 2026 10:56:29:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 10:56:29.850","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","199103","JP100222002","6330","3092412","Week I-2 (1)","8","Date of Visit","34112180","0","22 May 2026 07:17:30:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:17:30.093","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","199103","JP100222002","6330","3208688","Week I-4 (1)","9","Date of Visit","35259553","0","22 May 2026 07:18:01:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:18:01.770","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","2897533","Screening","3","Date of Visit","31433375","0","09 Feb 2026 02:18:00:253","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 02:18:00.253","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","2952435","Week I-0 (1)","7","Date of Visit","32195258","0","24 Feb 2026 04:42:07:997","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 04:42:07.997","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","2952560","Week I-2 (1)","8","Date of Visit","32197508","0","10 Mar 2026 03:24:23:237","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 03:24:23.237","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","2995627","Week I-4 (1)","9","Date of Visit","32791604","0","24 Mar 2026 06:48:34:283","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 06:48:34.283","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","3027391","Week I-8 (1)","10","Date of Visit","33206473","0","21 Apr 2026 02:43:54:860","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 02:43:54.860","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","3078991","Week I-12 (1)","11","Date of Visit","33917021","0","21 May 2026 05:51:13:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 05:51:13.303","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","198858","JP100242002","6330","3005642","Screening","3","Date of Visit","32927835","0","14 Apr 2026 06:20:38:503","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 06:20:38.503","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","198858","JP100242002","6330","3063203","Week I-0 (1)","7","Date of Visit","33674216","0","14 Apr 2026 06:20:38:520","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 06:20:38.520","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","198858","JP100242002","6330","3063619","Week I-2 (1)","8","Date of Visit","33679463","0","28 Apr 2026 05:44:04:250","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 05:44:04.250","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","198858","JP100242002","6330","3113394","Week I-4 (1)","9","Date of Visit","34339530","0","14 May 2026 05:31:35:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 05:31:35.880","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2590031","Screening","3","Date of Visit","27797552","0","04 Nov 2025 05:18:08:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251104 05:18:08.707","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2642530","Week I-0 (1)","7","Date of Visit","28405159","0","04 Nov 2025 05:44:04:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251104 05:44:04.483","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2664033","Week I-2 (1)","8","Date of Visit","28633248","0","07 Nov 2025 08:38:42:840","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251107 08:38:42.840","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2680154","Week I-4 (1)","9","Date of Visit","28813807","0","21 Nov 2025 08:45:28:643","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251121 08:45:28.643","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2725763","Week I-8 (1)","10","Date of Visit","29380575","0","19 Dec 2025 09:04:54:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251219 09:04:54.400","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2844918","Week I-12 (1)","11","Date of Visit","30745237","0","16 Jan 2026 02:38:05:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260116 02:38:05.753","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2880710","Week M-4 (1)","15","Date of Visit","31222861","0","13 Feb 2026 08:07:49:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 08:07:49.857","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2935473","Week M-8 (1)","16","Date of Visit","31953093","0","16 Mar 2026 03:45:45:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 03:45:45.660","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","3008507","Week M-12 (1)","17","Date of Visit","32964519","0","13 Apr 2026 01:08:30:457","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 01:08:30.457","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","3061032","Week M-16 (1)","18","Date of Visit","33643841","0","07 May 2026 07:23:52:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 07:23:52.870","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2601306","Screening","3","Date of Visit","27952188","0","21 Nov 2025 02:58:30:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251121 02:58:30.123","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2717934","Week I-0 (1)","7","Date of Visit","29248109","0","21 Nov 2025 03:24:34:220","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251121 03:24:34.220","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2724894","Week I-2 (1)","8","Date of Visit","29370582","0","05 Dec 2025 05:18:01:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251205 05:18:01.247","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2803081","Week I-4 (1)","9","Date of Visit","30212839","0","19 Dec 2025 09:08:31:103","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251219 09:08:31.103","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2844939","Week I-8 (1)","10","Date of Visit","30745414","0","16 Jan 2026 01:56:30:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260116 01:56:30.707","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2869325","Week I-12 (1)","11","Date of Visit","31222466","0","16 Feb 2026 04:24:02:690","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 04:24:02.690","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2938835","Week M-4 (1)","15","Date of Visit","32005795","0","16 Mar 2026 03:27:23:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 03:27:23.247","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","3008499","Week M-8 (1)","16","Date of Visit","32964395","0","15 Apr 2026 06:02:55:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 06:02:55.497","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","3066449","Week M-12 (1)","17","Date of Visit","33716538","0","07 May 2026 07:02:49:273","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 07:02:49.273","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2783312","Screening","3","Date of Visit","29899042","0","22 Jan 2026 03:41:15:887","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 03:41:15.887","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2863164","Week I-0 (1)","7","Date of Visit","31005989","0","22 Jan 2026 03:41:15:910","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 03:41:15.910","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2869326","Week I-2 (1)","8","Date of Visit","31082964","0","22 Jan 2026 06:48:27:143","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 06:48:27.143","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2892076","Week I-4 (1)","9","Date of Visit","31359937","0","05 Feb 2026 08:58:32:703","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 08:58:32.703","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2916537","Week I-8 (1)","10","Date of Visit","31672747","0","27 Feb 2026 12:06:30:753","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 12:06:30.753","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2963351","Week I-12 (1)","11","Date of Visit","32356165","0","03 Apr 2026 11:14:17:877","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 11:14:17.877","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","3048285","Week M-4 (1)","15","Date of Visit","33487971","0","01 May 2026 07:48:50:263","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 07:48:50.263","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","2975461","Screening","3","Date of Visit","32510513","0","11 Mar 2026 08:47:30:833","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 08:47:30.833","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","3015059","Week I-0 (1)","7","Date of Visit","33052488","0","18 Mar 2026 09:50:42:327","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 09:50:42.327","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","3016050","Week I-2 (1)","8","Date of Visit","33065991","0","31 Mar 2026 07:03:25:157","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 07:03:25.157","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","3041958","Week I-4 (1)","9","Date of Visit","33397687","0","14 Apr 2026 08:53:22:103","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 08:53:22.103","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","3064332","Week I-8 (1)","10","Date of Visit","33688894","0","11 May 2026 07:49:20:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 07:49:20.317","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2624250","Screening","3","Date of Visit","28207343","0","05 Nov 2025 08:20:49:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251105 08:20:49.973","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2682950","Week I-0 (1)","7","Date of Visit","28847299","0","08 Nov 2025 05:23:28:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251108 05:23:28.957","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2682993","Week I-2 (1)","8","Date of Visit","28847640","0","25 Nov 2025 05:23:07:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251125 05:23:07.397","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2757179","Week I-4 (1)","9","Date of Visit","29551552","0","06 Dec 2025 03:27:11:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251206 03:27:11.550","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2806904","Week I-8 (1)","10","Date of Visit","30264046","0","19 Jan 2026 05:20:55:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 05:20:55.543","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2883736","Week I-12 (1)","11","Date of Visit","31256124","0","02 Feb 2026 07:09:48:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 07:09:48.133","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2908097","Week M-4 (1)","15","Date of Visit","31565272","0","02 Mar 2026 02:28:06:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 02:28:06.237","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2964907","Week M-8 (1)","16","Date of Visit","32370023","0","30 Mar 2026 04:11:51:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 04:11:51.150","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","3039492","Week M-12 (1)","17","Date of Visit","33367096","0","22 Apr 2026 05:40:15:137","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 05:40:15.137","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","3082608","Week M-16 (1)","18","Date of Visit","33970487","0","25 May 2026 03:25:23:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 03:25:23.053","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2762738","Screening","3","Date of Visit","29633487","0","22 Dec 2025 23:28:21:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251222 23:28:21.727","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2847431","Week I-0 (1)","7","Date of Visit","30784696","0","22 Dec 2025 23:56:09:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251222 23:56:09.587","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2849908","Week I-2 (1)","8","Date of Visit","30820443","0","07 Jan 2026 05:53:18:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260107 05:53:18.700","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2865241","Week I-4 (1)","9","Date of Visit","31031496","0","21 Jan 2026 06:51:25:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 06:51:25.310","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2889621","Week I-8 (1)","10","Date of Visit","31327809","0","16 Feb 2026 07:34:12:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 07:34:12.350","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2938953","Week I-12 (1)","11","Date of Visit","32007827","0","19 Mar 2026 08:39:32:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 08:39:32.483","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","3018561","Week M-4 (1)","15","Date of Visit","33097724","0","17 Apr 2026 04:09:07:097","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 04:09:07.097","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","3072564","Week M-8 (1)","16","Date of Visit","33819026","0","11 May 2026 03:37:55:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 03:37:55.887","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2783347","Screening","3","Date of Visit","29899305","0","10 Dec 2025 10:04:07:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251210 10:04:07.280","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2852169","Week I-0 (1)","7","Date of Visit","30856376","0","30 Dec 2025 05:44:59:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251230 05:44:59.050","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2857795","Week I-2 (1)","8","Date of Visit","30938960","0","09 Jan 2026 07:03:06:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 07:03:06.347","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2869609","Week I-4 (1)","9","Date of Visit","31086054","0","27 Jan 2026 00:27:25:503","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260127 00:27:25.503","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2897393","Week I-8 (1)","10","Date of Visit","31431897","0","20 Feb 2026 02:46:23:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260220 02:46:23.453","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2947856","Week I-12 (1)","11","Date of Visit","32130748","0","19 Mar 2026 02:36:08:823","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 02:36:08.823","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","3017886","Week M-4 (1)","15","Date of Visit","33089816","0","15 Apr 2026 05:01:53:847","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 05:01:53.847","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","3066324","Week M-8 (1)","16","Date of Visit","33715098","0","13 May 2026 03:27:51:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 03:27:51.310","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","197731","JP100312002","6330","2980995","Screening","3","Date of Visit","32580099","0","12 Mar 2026 06:16:40:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 06:16:40.137","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","197731","JP100312002","6330","3044027","Week I-0 (1)","7","Date of Visit","33425557","0","01 Apr 2026 04:55:39:290","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 04:55:39.290","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","197731","JP100312002","6330","3044247","Week I-2 (1)","8","Date of Visit","33430009","0","27 Apr 2026 06:27:23:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 06:27:23.507","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","197731","JP100312002","6330","3110898","Week I-4 (1)","9","Date of Visit","34307326","0","30 Apr 2026 07:40:04:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:40:04.843","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2683827","Screening","3","Date of Visit","28854990","0","11 Nov 2025 05:30:04:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251111 05:30:04.150","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2817971","Week I-0 (1)","7","Date of Visit","30406155","0","11 Dec 2025 06:30:07:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251211 06:30:07.950","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2825955","Week I-2 (1)","8","Date of Visit","30508163","0","25 Dec 2025 04:36:54:457","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251225 04:36:54.457","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2854558","Week I-4 (1)","9","Date of Visit","30897590","0","14 Jan 2026 02:30:28:500","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260114 02:30:28.500","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2876395","Week I-8 (1)","10","Date of Visit","31167946","0","18 Feb 2026 02:27:21:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260218 02:27:21.033","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2943014","Week I-12 (1)","11","Date of Visit","32065499","0","03 Mar 2026 23:15:19:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 23:15:19.303","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2975326","Week M-4 (1)","15","Date of Visit","32509126","0","02 Apr 2026 07:27:06:480","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 07:27:06.480","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","3046620","Week M-8 (1)","16","Date of Visit","33465630","0","07 May 2026 02:38:14:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 02:38:14.353","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2707537","Screening","3","Date of Visit","29142098","0","05 Dec 2025 00:37:35:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251205 00:37:35.697","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2850019","Week I-0 (1)","7","Date of Visit","30822333","0","26 Dec 2025 07:12:38:410","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251226 07:12:38.410","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2855155","Week I-2 (1)","8","Date of Visit","30904896","0","14 Jan 2026 02:20:42:903","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260114 02:20:42.903","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2876385","Week I-4 (1)","9","Date of Visit","31167796","0","23 Jan 2026 00:38:10:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 00:38:10.553","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2893879","Week I-8 (1)","10","Date of Visit","31384076","0","19 Feb 2026 02:38:41:273","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 02:38:41.273","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2945398","Week I-12 (1)","11","Date of Visit","32097211","0","02 Apr 2026 09:13:13:483","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 09:13:13.483","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","3046814","Week M-4 (1)","15","Date of Visit","33469090","0","11 May 2026 05:48:14:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 05:48:14.093","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","3172271","Week M-8 (1)","16","Date of Visit","34854546","0","20 May 2026 07:29:48:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 07:29:48.940","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2841680","Screening","3","Date of Visit","30706887","0","09 Jan 2026 01:48:08:213","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 01:48:08.213","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2865061","Week I-0 (1)","7","Date of Visit","31029327","0","13 Jan 2026 05:13:40:593","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260113 05:13:40.593","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2873993","Week I-2 (1)","8","Date of Visit","31137915","0","23 Jan 2026 01:21:53:873","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 01:21:53.873","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2893898","Week I-4 (1)","9","Date of Visit","31384321","0","18 Feb 2026 02:32:04:213","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260218 02:32:04.213","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2943015","Week I-8 (1)","10","Date of Visit","32065520","0","04 Mar 2026 00:47:47:200","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 00:47:47.200","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2975377","Week I-12 (1)","11","Date of Visit","32509689","0","31 Mar 2026 03:17:57:297","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 03:17:57.297","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2830999","Screening","3","Date of Visit","30571261","0","24 Dec 2025 00:35:46:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251224 00:35:46.043","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2883610","Week I-0 (1)","7","Date of Visit","31254750","0","20 Jan 2026 04:52:56:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 04:52:56.580","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2886573","Week I-2 (1)","8","Date of Visit","31291118","0","05 Feb 2026 00:45:24:590","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 00:45:24.590","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2915688","Week I-4 (1)","9","Date of Visit","31661921","0","19 Feb 2026 03:39:59:383","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 03:39:59.383","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2945414","Week I-8 (1)","10","Date of Visit","32097479","0","19 Mar 2026 08:41:44:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 08:41:44.460","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","3018569","Week I-12 (1)","11","Date of Visit","33097871","0","14 Apr 2026 09:02:11:193","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 09:02:11.193","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","3064400","Week M-4 (1)","15","Date of Visit","33689757","0","12 May 2026 07:56:17:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 07:56:17.200","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","201881","JP100342002","6330","3066736","Screening","3","Date of Visit","33721108","0","22 May 2026 07:36:48:160","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:36:48.160","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","201881","JP100342002","6330","3189600","Week I-0 (1)","7","Date of Visit","34991094","0","15 May 2026 09:00:38:473","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 09:00:38.473","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2687156","Screening","3","Date of Visit","28894867","0","01 Dec 2025 07:06:17:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251201 07:06:17.223","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2813889","Week I-0 (1)","7","Date of Visit","30350790","0","09 Dec 2025 08:12:04:063","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251209 08:12:04.063","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2814799","Week I-2 (1)","8","Date of Visit","30360180","0","25 Dec 2025 05:16:10:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251225 05:16:10.283","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2854593","Week I-4 (1)","9","Date of Visit","30897897","0","28 Jan 2026 03:58:23:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 03:58:23.983","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2899596","Week I-8 (1)","10","Date of Visit","31460225","0","06 Feb 2026 08:34:08:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 08:34:08.880","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2919736","Week I-12 (1)","11","Date of Visit","31722978","0","04 Mar 2026 08:32:09:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 08:32:09.683","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2976087","Week M-4 (1)","15","Date of Visit","32518205","0","10 Apr 2026 05:18:27:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 05:18:27.817","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","3058768","Week M-8 (1)","16","Date of Visit","33619284","0","15 May 2026 00:09:14:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 00:09:14.030","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","2930584","Screening","3","Date of Visit","31874376","0","04 Mar 2026 09:42:26:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 09:42:26.593","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","2995605","Week I-0 (1)","7","Date of Visit","32791357","0","24 Mar 2026 09:14:01:533","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 09:14:01.533","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","3027930","Week I-2 (1)","8","Date of Visit","33213431","0","24 Mar 2026 10:22:12:233","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 10:22:12.233","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","3028813","Week I-4 (1)","9","Date of Visit","33224173","0","10 Apr 2026 06:25:42:473","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 06:25:42.473","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","3058844","Week I-8 (1)","10","Date of Visit","33620152","0","15 May 2026 00:14:19:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 00:14:19.160","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","202501","JP100372003","6330","3078915","Screening","3","Date of Visit","33915705","0","21 Apr 2026 01:18:17:527","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 01:18:17.527","","" +"JPN","9140","DD5-JP10043","Kyorin University Hospital","194460","JP100432001","6330","2913084","Screening","3","Date of Visit","31632167","0","10 Feb 2026 10:04:12:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 10:04:12.773","","" +"JPN","9140","DD5-JP10043","Kyorin University Hospital","194460","JP100432001","6330","2975467","Week I-0 (1)","7","Date of Visit","32510639","0","04 Mar 2026 07:36:44:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 07:36:44.833","","" +"JPN","9140","DD5-JP10043","Kyorin University Hospital","194460","JP100432001","6330","2975949","Week I-2 (1)","8","Date of Visit","32516330","0","18 Mar 2026 02:38:49:223","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 02:38:49.223","","" +"JPN","9140","DD5-JP10043","Kyorin University Hospital","194460","JP100432001","6330","3015007","Week I-4 (1)","9","Date of Visit","33051977","0","06 Apr 2026 07:13:47:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 07:13:47.530","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2861275","Screening","3","Date of Visit","30981452","0","08 Jan 2026 08:40:34:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260108 08:40:34.660","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2921742","Week I-0 (1)","7","Date of Visit","31747009","0","09 Feb 2026 06:51:13:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 06:51:13.973","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2921969","Week I-2 (1)","8","Date of Visit","31750931","0","25 Feb 2026 03:21:55:763","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 03:21:55.763","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2956251","Week I-4 (1)","9","Date of Visit","32258576","0","09 Mar 2026 06:17:21:403","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 06:17:21.403","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2989436","Week I-8 (1)","10","Date of Visit","32702850","0","03 Apr 2026 05:51:57:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 05:51:57.230","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","3047898","Week I-12 (1)","11","Date of Visit","33483325","0","01 May 2026 06:19:50:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 06:19:50.070","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2783566","Screening","3","Date of Visit","29901009","0","30 Apr 2026 05:05:44:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 05:05:44.597","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2863179","Week I-0 (1)","7","Date of Visit","31006231","0","06 Jan 2026 05:09:18:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260106 05:09:18.790","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2863360","Week I-2 (1)","8","Date of Visit","31008452","0","20 Jan 2026 09:23:11:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 09:23:11.000","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2887319","Week I-4 (1)","9","Date of Visit","31300376","0","04 Feb 2026 01:44:01:540","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 01:44:01.540","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2913122","Week I-8 (1)","10","Date of Visit","31632850","0","03 Mar 2026 07:06:14:793","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 07:06:14.793","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2968671","Week I-12 (1)","11","Date of Visit","32412751","0","13 May 2026 05:36:21:673","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 05:36:21.673","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2865167","Screening","3","Date of Visit","31030679","0","07 Apr 2026 02:30:45:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 02:30:45.987","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2913091","Week I-0 (1)","7","Date of Visit","31632386","0","05 Feb 2026 01:03:38:800","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 01:03:38.800","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2915707","Week I-2 (1)","8","Date of Visit","31662181","0","19 Feb 2026 05:57:27:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 05:57:27.853","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2945616","Week I-4 (1)","9","Date of Visit","32099020","0","06 Mar 2026 02:27:52:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 02:27:52.760","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2980957","Week I-8 (1)","10","Date of Visit","32579438","0","01 Apr 2026 02:41:22:230","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 02:41:22.230","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","3044142","Week I-12 (1)","11","Date of Visit","33428945","0","27 Apr 2026 23:20:33:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 23:20:33.607","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","205131","JP100491001","6330","3138637","Screening","3","Date of Visit","34749797","0","20 May 2026 16:48:53:443","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 16:48:53.443","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","2873861","Screening","3","Date of Visit","31135599","0","03 Feb 2026 02:10:00:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 02:10:00.677","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","2940151","Week I-0 (1)","7","Date of Visit","32027462","0","20 Feb 2026 07:38:56:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260220 07:38:56.267","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","2948310","Week I-2 (1)","8","Date of Visit","32136461","0","16 Mar 2026 01:53:55:003","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 01:53:55.003","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","3008358","Week I-4 (1)","9","Date of Visit","32963209","0","19 Mar 2026 02:55:26:883","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 02:55:26.883","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","3017908","Week I-8 (1)","10","Date of Visit","33090080","0","15 Apr 2026 04:28:29:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 04:28:29.783","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","3066282","Week I-12 (1)","11","Date of Visit","33714359","0","15 May 2026 06:23:30:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 06:23:30.870","","" +"JPN","9959","DD5-JP10050","Hospital of the University of Occupational and Enviromental Health","210952","JP100502001","6330","3196109","Screening","3","Date of Visit","35085162","0","22 May 2026 06:02:37:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 06:02:37.307","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","2913405","Screening","3","Date of Visit","31635561","0","02 Mar 2026 02:56:36:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 02:56:36.877","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","2943413","Week I-0 (1)","7","Date of Visit","32069936","0","09 Mar 2026 08:07:44:063","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 08:07:44.063","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","2989700","Week I-2 (1)","8","Date of Visit","32706276","0","13 Mar 2026 00:44:08:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 00:44:08.077","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","3005342","Week I-4 (1)","9","Date of Visit","32923812","0","14 Apr 2026 01:40:44:200","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 01:40:44.200","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","3063189","Week I-8 (1)","10","Date of Visit","33673927","0","15 Apr 2026 03:40:13:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 03:40:13.867","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","3066234","Week I-12 (1)","11","Date of Visit","33713763","0","20 May 2026 09:00:23:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 09:00:23.647","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","2953374","Screening","3","Date of Visit","32210113","0","15 Apr 2026 05:42:11:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 05:42:11.647","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","3047828","Week I-0 (1)","7","Date of Visit","33482058","0","15 Apr 2026 06:03:05:380","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 06:03:05.380","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","3066450","Week I-2 (1)","8","Date of Visit","33716554","0","19 May 2026 05:42:55:373","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 05:42:55.373","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","3200259","Week I-4 (1)","9","Date of Visit","35145585","0","19 May 2026 05:48:10:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 05:48:10.320","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","3200261","Week I-8 (1)","10","Date of Visit","35145695","0","19 May 2026 05:52:24:033","Tier 1","SDVTier","No","Did this visit occur?","","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 05:52:24.033","","" +"JPN","9143","DD5-JP10052","Saiseikai Fukuoka General Hospital","202349","JP100522001","6330","3076025","Screening","3","Date of Visit","33867650","0","20 Apr 2026 05:24:34:043","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 05:24:34.043","","" +"JPN","9143","DD5-JP10052","Saiseikai Fukuoka General Hospital","210803","JP100522002","6330","3192811","Screening","3","Date of Visit","35035347","0","18 May 2026 06:34:17:157","Tier 1","SDVTier","Yes","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 06:34:17.157","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198036","JP100532001","6330","2988740","Screening","3","Date of Visit","32695309","0","26 Mar 2026 02:46:06:400","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 02:46:06.400","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198533","JP100532002","6330","2999043","Screening","3","Date of Visit","32838537","0","15 Apr 2026 02:23:10:767","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 02:23:10.767","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198533","JP100532002","6330","3047873","Unscheduled 20260403","59","Date of Visit","33482962","0","03 Apr 2026 04:59:39:110","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","03 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","THE PLATELET COUNT IN THE SCREENING TEST RESULTS REQUIRES RETESTING DUE TO BLOOD CLOTTING.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 04:59:39.110","","" +"JPN","9073","DD5-JP10053","Takano Hospital","200055","JP100532003","6330","3030620","Screening","3","Date of Visit","33248483","0","25 Mar 2026 05:34:58:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 05:34:58.810","","" +"JPN","9073","DD5-JP10053","Takano Hospital","200055","JP100532003","6330","3058682","Week I-0 (1)","7","Date of Visit","33618386","0","10 Apr 2026 06:51:39:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 06:51:39.660","","" +"JPN","9073","DD5-JP10053","Takano Hospital","200055","JP100532003","6330","3058969","Week I-2 (1)","8","Date of Visit","33621302","0","24 Apr 2026 06:41:42:443","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 06:41:42.443","","" +"JPN","9073","DD5-JP10053","Takano Hospital","200055","JP100532003","6330","3090332","Week I-4 (1)","9","Date of Visit","34092373","0","08 May 2026 04:10:43:270","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 04:10:43.270","","" +"JPN","9073","DD5-JP10053","Takano Hospital","210930","JP100532004","6330","3195544","Screening","3","Date of Visit","35077566","0","15 May 2026 04:02:26:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 04:02:26.543","","" +"JPN","9073","DD5-JP10053","Takano Hospital","211022","JP100532005","6330","3197675","Screening","3","Date of Visit","35109322","0","22 May 2026 04:20:10:613","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 04:20:10.613","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","2901518","Screening","3","Date of Visit","31482865","0","29 Jan 2026 01:06:52:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 01:06:52.763","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","2968244","Week I-0 (1)","7","Date of Visit","32407673","0","03 Mar 2026 07:08:40:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 07:08:40.693","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","2968675","Week I-2 (1)","8","Date of Visit","32412831","0","17 Mar 2026 02:42:34:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 02:42:34.417","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","3011188","Week I-4 (1)","9","Date of Visit","33000970","0","31 Mar 2026 01:50:35:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 01:50:35.817","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","3041603","Week I-8 (1)","10","Date of Visit","33393817","0","30 Apr 2026 04:28:27:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 04:28:27.217","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","2915914","Screening","3","Date of Visit","31664230","0","05 Feb 2026 06:26:35:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 06:26:35.597","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","2978094","Week I-0 (1)","7","Date of Visit","32543151","0","05 Mar 2026 06:35:21:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 06:35:21.677","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","2978273","Week I-2 (1)","8","Date of Visit","32545767","0","19 Mar 2026 06:03:34:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 06:03:34.510","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","3018009","Week I-4 (1)","9","Date of Visit","33091315","0","08 Apr 2026 00:57:49:900","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 00:57:49.900","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","3052684","Week I-8 (1)","10","Date of Visit","33541949","0","30 Apr 2026 05:01:00:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 05:01:00.833","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","2952471","Screening","3","Date of Visit","32195576","0","04 Mar 2026 02:49:58:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 02:49:58.337","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","3008707","Week I-0 (1)","7","Date of Visit","32966870","0","17 Mar 2026 06:18:33:847","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 06:18:33.847","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","3011558","Week I-2 (1)","8","Date of Visit","33005597","0","26 Mar 2026 11:24:08:333","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 21MAR2026 > WORSENING OF UC","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 11:24:08.333","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","3035603","Induction Early Discontinuation (1)","12","Date of Visit","33313497","0","26 Mar 2026 11:25:27:263","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 11:25:27.263","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","3035604","Induction Safety Follow Up (1)","13","Date of Visit","33313498","0","24 Apr 2026 07:20:44:117","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 07:20:44.117","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","2897602","Screening","3","Date of Visit","31434378","0","28 Jan 2026 11:05:54:057","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 11:05:54.057","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","2961934","Week I-0 (1)","7","Date of Visit","32341002","0","10 Mar 2026 02:46:52:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 02:46:52.920","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","2995608","Week I-2 (1)","8","Date of Visit","32791398","0","11 Mar 2026 17:04:01:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 17:04:01.237","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","3002226","Week I-4 (1)","9","Date of Visit","32879980","0","03 Apr 2026 07:16:13:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 07:16:13.237","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","3047995","Week I-8 (1)","10","Date of Visit","33484599","0","29 Apr 2026 07:37:36:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 07:37:36.680","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","3116820","Week I-12 (1)","11","Date of Visit","34396624","0","20 May 2026 07:01:24:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 07:01:24.647","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","2901844","Screening","3","Date of Visit","31487179","0","29 Jan 2026 15:34:16:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 15:34:16.113","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","2999249","Week I-0 (1)","7","Date of Visit","32841110","0","17 Mar 2026 14:32:58:450","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 14:32:58.450","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","3014022","Week I-2 (1)","8","Date of Visit","33039986","0","25 Mar 2026 14:49:51:750","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 14:49:51.750","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","3033167","Week I-4 (1)","9","Date of Visit","33280969","0","08 Apr 2026 08:26:18:217","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 08:26:18.217","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","3053502","Week I-8 (1)","10","Date of Visit","33553929","0","06 May 2026 07:37:19:013","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:37:19.013","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","2915926","Screening","3","Date of Visit","31664390","0","06 Feb 2026 05:53:46:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 05:53:46.340","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","2978181","Week I-0 (1)","7","Date of Visit","32544303","0","10 Mar 2026 03:28:23:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 03:28:23.763","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","2995635","Week I-2 (1)","8","Date of Visit","32791657","0","25 Mar 2026 14:59:54:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 14:59:54.580","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","3033187","Week I-4 (1)","9","Date of Visit","33281360","0","02 Apr 2026 09:15:58:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 09:15:58.550","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","3046820","Week I-8 (1)","10","Date of Visit","33469154","0","06 May 2026 07:40:19:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:40:19.177","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","2952452","Screening","3","Date of Visit","32195373","0","03 Mar 2026 13:27:36:117","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 13:27:36.117","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","2995739","Week I-0 (1)","7","Date of Visit","32793385","0","18 Mar 2026 11:06:56:637","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 11:06:56.637","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","3016369","Week I-2 (1)","8","Date of Visit","33070569","0","25 Mar 2026 14:30:37:387","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 14:30:37.387","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","3033113","Week I-4 (1)","9","Date of Visit","33280026","0","08 Apr 2026 08:30:13:460","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 08:30:13.460","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","3053522","Week I-8 (1)","10","Date of Visit","33554109","0","06 May 2026 07:41:27:753","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:41:27.753","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","2915686","Screening","3","Date of Visit","31661819","0","06 Feb 2026 06:23:53:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 06:23:53.697","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","2968260","Week I-0 (1)","7","Date of Visit","32407864","0","03 Mar 2026 06:11:02:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 06:11:02.507","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","2968528","Week I-2 (1)","8","Date of Visit","32410728","0","16 Mar 2026 06:29:14:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 06:29:14.100","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","3008680","Week I-4 (1)","9","Date of Visit","32966489","0","30 Mar 2026 06:26:45:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 06:26:45.583","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","3039601","Week I-8 (1)","10","Date of Visit","33369008","0","28 Apr 2026 06:31:14:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 06:31:14.387","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","202348","KR100032002","6330","3076002","Screening","3","Date of Visit","33867454","0","20 Apr 2026 03:12:43:227","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 03:12:43.227","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","202348","KR100032002","6330","3135568","Week I-0 (1)","7","Date of Visit","34700921","0","07 May 2026 05:20:15:690","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 05:20:15.690","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","202348","KR100032002","6330","3135743","Week I-2 (1)","8","Date of Visit","34704914","0","21 May 2026 03:20:21:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 03:20:21.247","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201014","KR100042001","6330","3049043","Screening","3","Date of Visit","33496890","0","06 Apr 2026 08:07:46:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 08:07:46.340","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201014","KR100042001","6330","3135579","Week I-0 (1)","7","Date of Visit","34701123","0","07 May 2026 04:51:50:203","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 04:51:50.203","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201014","KR100042001","6330","3135725","Week I-2 (1)","8","Date of Visit","34704476","0","21 May 2026 06:18:13:540","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 06:18:13.540","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201618","KR100042002","6330","3061016","Screening","3","Date of Visit","33643475","0","20 Apr 2026 07:53:59:767","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 07:53:59.767","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201618","KR100042002","6330","3086303","Week I-0 (1)","7","Date of Visit","34027488","0","23 Apr 2026 07:35:38:993","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 07:35:38.993","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201618","KR100042002","6330","3087185","Week I-2 (1)","8","Date of Visit","34039428","0","06 May 2026 07:55:15:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:55:15.957","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201618","KR100042002","6330","3133484","Week I-4 (1)","9","Date of Visit","34661514","0","21 May 2026 07:14:12:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 07:14:12.440","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","195133","KR100052001","6330","2927789","Screening","3","Date of Visit","31834491","0","05 Mar 2026 06:16:06:847","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 06:16:06.847","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","201015","KR100052002","6330","3049056","Screening","3","Date of Visit","33497150","0","14 Apr 2026 02:46:09:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 02:46:09.597","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","201015","KR100052002","6330","3186821","Week I-0 (1)","7","Date of Visit","34950245","0","18 May 2026 05:02:18:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 05:02:18.080","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","203952","KR100052003","6330","3113188","Screening","3","Date of Visit","34336795","0","15 May 2026 01:23:04:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 01:23:04.237","","" +"KOR","9331","DD5-KR10006","Kyung Hee University Hospital","199867","KR100062001","6330","3027022","Screening","3","Date of Visit","33202318","0","12 May 2026 02:13:23:290","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 02:13:23.290","","" +"KOR","9331","DD5-KR10006","Kyung Hee University Hospital","202499","KR100062002","6330","3078885","Screening","3","Date of Visit","33915320","0","21 Apr 2026 04:48:59:390","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 04:48:59.390","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196260","KR100072001","6330","2950170","Screening","3","Date of Visit","32159660","0","23 Feb 2026 05:59:56:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 05:59:56.767","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196260","KR100072001","6330","3039418","Week I-0 (1)","7","Date of Visit","33366068","0","30 Mar 2026 02:07:26:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 02:07:26.163","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196260","KR100072001","6330","3039455","Week I-2 (1)","8","Date of Visit","33366525","0","13 Apr 2026 01:09:55:270","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 01:09:55.270","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196260","KR100072001","6330","3061041","Week I-4 (1)","9","Date of Visit","33643916","0","27 Apr 2026 01:25:04:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 01:25:04.833","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","2952376","Screening","3","Date of Visit","32194308","0","24 Feb 2026 01:43:09:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 01:43:09.880","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","3020615","Week I-0 (1)","7","Date of Visit","33121719","0","20 Mar 2026 01:32:01:047","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 01:32:01.047","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","3020637","Week I-2 (1)","8","Date of Visit","33122092","0","01 Apr 2026 00:45:36:320","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 00:45:36.320","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","3043987","Week I-4 (1)","9","Date of Visit","33423707","0","16 Apr 2026 00:54:01:210","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 00:54:01.210","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","3068605","Week I-8 (1)","10","Date of Visit","33753227","0","14 May 2026 01:03:24:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 01:03:24.137","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","2908111","Screening","3","Date of Visit","31565353","0","09 Feb 2026 06:10:44:820","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 06:10:44.820","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","2968416","Week I-0 (1)","7","Date of Visit","32409487","0","04 Mar 2026 06:48:15:403","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 06:48:15.403","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","2975847","Week I-2 (1)","8","Date of Visit","32515209","0","19 Mar 2026 06:24:56:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 06:24:56.880","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","3018065","Week I-4 (1)","9","Date of Visit","33091910","0","30 Mar 2026 06:40:45:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 06:40:45.430","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","3039609","Week I-8 (1)","10","Date of Visit","33369140","0","29 Apr 2026 03:58:48:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 03:58:48.497","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","196563","KR100082002","6330","2956259","Screening","3","Date of Visit","32258600","0","27 Feb 2026 03:27:28:627","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 03:27:28.627","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","196563","KR100082002","6330","3044147","Week I-0 (1)","7","Date of Visit","33429054","0","01 Apr 2026 07:21:48:373","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 07:21:48.373","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","196563","KR100082002","6330","3044474","Week I-2 (1)","8","Date of Visit","33434123","0","14 Apr 2026 05:23:55:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 05:23:55.823","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","196563","KR100082002","6330","3063439","Week I-4 (1)","9","Date of Visit","33677781","0","29 Apr 2026 03:50:32:363","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 03:50:32.363","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","196687","KR100092001","6330","2958733","Screening","3","Date of Visit","32297112","0","05 Mar 2026 11:31:17:630","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 11:31:17.630","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","196687","KR100092001","6330","3040224","Week I-0 (1)","7","Date of Visit","33377094","0","30 Mar 2026 10:27:38:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 10:27:38.477","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","196687","KR100092001","6330","3040292","Week I-2 (1)","8","Date of Visit","33377972","0","15 Apr 2026 03:50:30:557","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 03:50:30.557","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","196687","KR100092001","6330","3066238","Week I-4 (1)","9","Date of Visit","33713839","0","27 Apr 2026 23:51:45:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 23:51:45.483","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","199716","KR100092002","6330","3023923","Screening","3","Date of Visit","33160335","0","24 Mar 2026 07:33:37:170","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 07:33:37.170","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","199716","KR100092002","6330","3068576","Week I-0 (1)","7","Date of Visit","33752719","0","17 Apr 2026 02:47:04:470","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 02:47:04.470","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","199716","KR100092002","6330","3072409","Week I-2 (1)","8","Date of Visit","33818008","0","30 Apr 2026 07:59:24:673","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:59:24.673","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","199716","KR100092002","6330","3120150","Week I-4 (1)","9","Date of Visit","34462994","0","15 May 2026 07:20:04:573","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 07:20:04.573","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","196562","KR100112001","6330","2956247","Screening","3","Date of Visit","32258477","0","28 Feb 2026 06:07:51:427","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260228 06:07:51.427","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","196562","KR100112001","6330","3072387","Week I-0 (1)","7","Date of Visit","33817591","0","20 Apr 2026 03:03:40:900","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 03:03:40.900","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","196562","KR100112001","6330","3076108","Week I-2 (1)","8","Date of Visit","33868897","0","30 Apr 2026 07:29:21:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:29:21.817","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","196562","KR100112001","6330","3120061","Week I-4 (1)","9","Date of Visit","34461889","0","15 May 2026 05:28:25:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 05:28:25.267","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197145","KR100112002","6330","2968111","Screening","3","Date of Visit","32406161","0","04 Mar 2026 00:29:46:060","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 00:29:46.060","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197145","KR100112002","6330","3068630","Week I-0 (1)","7","Date of Visit","33753433","0","20 Apr 2026 02:40:37:223","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 02:40:37.223","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197145","KR100112002","6330","3076085","Week I-2 (1)","8","Date of Visit","33868620","0","30 Apr 2026 07:37:28:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:37:28.640","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197145","KR100112002","6330","3120089","Week I-4 (1)","9","Date of Visit","34462317","0","12 May 2026 07:13:47:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 07:13:47.853","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197473","KR100112003","6330","2975408","Screening","3","Date of Visit","32509946","0","27 Mar 2026 06:48:59:967","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 06:48:59.967","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200054","KR100112004","6330","3030607","Screening","3","Date of Visit","33248368","0","27 Mar 2026 06:26:02:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 06:26:02.757","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200054","KR100112004","6330","3068585","Week I-0 (1)","7","Date of Visit","33752939","0","20 Apr 2026 02:52:47:627","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 02:52:47.627","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200054","KR100112004","6330","3076105","Week I-2 (1)","8","Date of Visit","33868827","0","30 Apr 2026 07:41:02:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:41:02.463","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200054","KR100112004","6330","3120103","Week I-4 (1)","9","Date of Visit","34462539","0","15 May 2026 05:25:57:023","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 05:25:57.023","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200506","KR100112005","6330","3039446","Screening","3","Date of Visit","33366296","0","30 Mar 2026 07:39:55:183","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 07:39:55.183","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200506","KR100112005","6330","3132710","Week I-0 (1)","7","Date of Visit","34642879","0","08 May 2026 07:44:53:017","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 07:44:53.017","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200506","KR100112005","6330","3138703","Week I-2 (1)","8","Date of Visit","34750908","0","19 May 2026 05:33:25:807","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 05:33:25.807","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","201619","KR100112006","6330","3061040","Screening","3","Date of Visit","33643857","0","15 Apr 2026 06:34:58:297","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 06:34:58.297","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","201619","KR100112006","6330","3126254","Week I-0 (1)","7","Date of Visit","34534699","0","04 May 2026 08:01:34:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 08:01:34.977","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","201619","KR100112006","6330","3126584","Week I-2 (1)","8","Date of Visit","34541690","0","18 May 2026 05:23:11:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 05:23:11.950","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","2876674","Screening","3","Date of Visit","31171534","0","31 Jan 2026 07:29:36:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260131 07:29:36.577","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","2938839","Week I-0 (1)","7","Date of Visit","32005870","0","16 Feb 2026 09:40:49:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 09:40:49.787","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","2939244","Week I-2 (1)","8","Date of Visit","32013052","0","05 Mar 2026 05:36:48:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 05:36:48.177","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","2978158","Week I-4 (1)","9","Date of Visit","32543999","0","07 Apr 2026 07:42:52:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 07:42:52.317","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","3051027","Week I-8 (1)","10","Date of Visit","33519306","0","14 Apr 2026 08:12:10:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 08:12:10.580","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","3064110","Week I-12 (1)","11","Date of Visit","33686183","0","20 May 2026 07:13:15:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 07:13:15.130","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","2965225","Screening","3","Date of Visit","32373165","0","05 Mar 2026 07:33:29:177","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 07:33:29.177","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","3056506","Week I-0 (1)","7","Date of Visit","33590796","0","07 May 2026 10:45:58:767","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 10:45:58.767","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","3137060","Week I-2 (1)","8","Date of Visit","34726397","0","08 May 2026 06:56:17:300","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 06:56:17.300","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","3138627","Week I-4 (1)","9","Date of Visit","34749763","0","08 May 2026 09:40:40:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 09:40:40.210","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","3167149","Week I-8 (1)","10","Date of Visit","34816849","0","11 May 2026 01:47:34:413","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 01:47:34.413","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","197158","MY100012003","6330","2968341","Screening","3","Date of Visit","32408646","0","12 Mar 2026 02:45:27:387","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 02:45:27.387","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","197158","MY100012003","6330","3047859","Week I-0 (1)","7","Date of Visit","33482694","0","15 Apr 2026 08:07:12:327","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 08:07:12.327","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","197158","MY100012003","6330","3066767","Week I-2 (1)","8","Date of Visit","33721758","0","11 May 2026 07:30:46:437","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 07:30:46.437","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","197158","MY100012003","6330","3181727","Week I-4 (1)","9","Date of Visit","34887170","0","11 May 2026 07:34:21:810","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 07:34:21.810","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","198528","MY100012004","6330","2998942","Screening","3","Date of Visit","32837406","0","11 May 2026 08:02:18:347","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 08:02:18.347","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","200805","MY100012005","6330","3044558","Screening","3","Date of Visit","33435575","0","21 May 2026 02:39:06:713","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 02:39:06.713","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","200805","MY100012005","6330","3181722","Week I-0 (1)","7","Date of Visit","34887082","0","11 May 2026 10:49:11:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 10:49:11.297","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","200805","MY100012005","6330","3185138","Week I-2 (1)","8","Date of Visit","34925381","0","22 May 2026 06:44:42:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 06:44:42.977","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","201205","MY100012006","6330","3052911","Screening","3","Date of Visit","33545686","0","21 May 2026 01:10:48:417","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 01:10:48.417","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2648952","Screening","3","Date of Visit","28474360","0","30 Oct 2025 03:50:42:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251030 03:50:42.070","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2698460","Week I-0 (1)","7","Date of Visit","29043453","0","14 Nov 2025 06:24:07:083","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251114 06:24:07.083","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2698921","Week I-2 (1)","8","Date of Visit","29047658","0","28 Nov 2025 08:54:32:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251128 08:54:32.407","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2774897","Week I-4 (1)","9","Date of Visit","29786248","0","15 Dec 2025 06:50:21:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251215 06:50:21.007","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2830990","Week I-8 (1)","10","Date of Visit","30571202","0","16 Jan 2026 03:26:20:500","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 JAN 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260116 03:26:20.500","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2880741","Week I-12 (1)","11","Date of Visit","31223195","0","12 Feb 2026 06:45:29:573","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 06:45:29.573","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2930925","Week M-4 (1)","15","Date of Visit","31879841","0","05 Mar 2026 06:27:07:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 06:27:07.387","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2978247","Week M-8 (1)","16","Date of Visit","32545567","0","08 Apr 2026 04:30:31:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 04:30:31.887","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","3052774","Week M-12 (1)","17","Date of Visit","33543622","0","04 May 2026 06:15:49:083","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 06:15:49.083","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2930921","Unscheduled 20251128","59","Date of Visit","31879782","0","12 Feb 2026 07:01:36:683","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","28 NOV 2025","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 07:01:36.683","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","2961803","Screening","3","Date of Visit","32339270","0","02 Mar 2026 08:15:58:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 08:15:58.623","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3011119","Week I-0 (1)","7","Date of Visit","32999749","0","19 Mar 2026 04:22:09:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 04:22:09.817","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3017941","Week I-2 (1)","8","Date of Visit","33090685","0","02 Apr 2026 04:06:36:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 04:06:36.667","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3046113","Week I-4 (1)","9","Date of Visit","33457633","0","15 Apr 2026 09:28:50:423","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 09:28:50.423","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3067013","Week I-8 (1)","10","Date of Visit","33725494","0","14 May 2026 06:00:57:167","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 06:00:57.167","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3120132","Unscheduled 20260430","59","Date of Visit","34462804","0","30 Apr 2026 07:50:20:673","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","30 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","REPEAT BLOOD TEST FOR HAEMATOLOGY AND CHEMISTRY PANEL.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:50:20.673","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","2968122","Screening","3","Date of Visit","32406314","0","03 Apr 2026 07:04:12:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 07:04:12.757","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","3011300","Week I-0 (1)","7","Date of Visit","33002718","0","03 Apr 2026 07:06:36:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 07:06:36.510","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","3017933","Week I-2 (1)","8","Date of Visit","33090515","0","31 Mar 2026 06:55:12:740","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 06:55:12.740","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","3041926","Week I-4 (1)","9","Date of Visit","33397359","0","15 Apr 2026 09:34:20:970","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 09:34:20.970","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","3067030","Week I-8 (1)","10","Date of Visit","33725663","0","14 May 2026 05:56:20:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 05:56:20.027","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","2980923","Screening","3","Date of Visit","32578730","0","07 Mar 2026 16:22:08:920","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260307 16:22:08.920","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3058555","Week I-0 (1)","7","Date of Visit","33616838","0","10 Apr 2026 06:59:04:687","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 06:59:04.687","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3058992","Week I-2 (1)","8","Date of Visit","33621694","0","24 Apr 2026 06:36:14:843","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 06:36:14.843","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3090275","Week I-4 (1)","9","Date of Visit","34091722","0","05 May 2026 06:50:07:703","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 06:50:07.703","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3017946","Unscheduled 20260319","59","Date of Visit","33090781","0","19 Mar 2026 04:45:58:877","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","REPEAT HAEMATOLOGY PANEL","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 04:45:58.877","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3042026","Unscheduled 20260331","59","Date of Visit","33644984","0","13 Apr 2026 03:15:02:787","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","31 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","COLONOSCOPY AND BIOPSY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 03:15:02.787","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","201019","MY100022005","6330","3049112","Screening","3","Date of Visit","33497740","0","07 Apr 2026 03:58:01:370","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 03:58:01.370","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","201019","MY100022005","6330","3189589","Week I-0 (1)","7","Date of Visit","34990878","0","14 May 2026 03:54:21:827","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 03:54:21.827","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2876394","Screening","3","Date of Visit","31167867","0","18 Jan 2026 09:07:55:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260118 09:07:55.700","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2910008","Week I-0 (1)","7","Date of Visit","31589325","0","05 Feb 2026 05:36:38:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 05:36:38.080","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2915977","Week I-2 (1)","8","Date of Visit","31665432","0","16 Feb 2026 06:33:06:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 06:33:06.163","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2938903","Week I-4 (1)","9","Date of Visit","32007153","0","04 Mar 2026 02:42:40:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 02:42:40.113","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2975481","Week I-8 (1)","10","Date of Visit","32510780","0","01 Apr 2026 00:21:33:230","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 00:21:33.230","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","3043958","Week I-12 (1)","11","Date of Visit","33421966","0","29 Apr 2026 02:23:12:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 02:23:12.437","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","3116338","Week M-4 (1)","15","Date of Visit","34389736","0","24 May 2026 06:39:01:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260524 06:39:01.803","","" +"MYS","9007","DD5-MY10006","Hospital Ampang","204255","MY100062001","6330","3119788","Screening","3","Date of Visit","34457129","0","30 Apr 2026 04:12:41:397","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 04:12:41.397","","" +"MYS","9007","DD5-MY10006","Hospital Ampang","211381","MY100062002","6330","3204985","Screening","3","Date of Visit","35210667","0","21 May 2026 06:28:39:400","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 06:28:39.400","","" +"MYS","9007","DD5-MY10006","Hospital Ampang","211655","MY100062003","6330","3210741","Screening","3","Date of Visit","35285465","0","25 May 2026 02:22:28:227","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 02:22:28.227","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2672359","Screening","3","Date of Visit","28722934","0","27 Nov 2025 07:38:31:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251127 07:38:31.447","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2767669","Week I-0 (1)","7","Date of Visit","29696309","0","27 Nov 2025 07:57:14:923","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251127 07:57:14.923","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2768833","Week I-2 (1)","8","Date of Visit","29706361","0","11 Dec 2025 02:33:38:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251211 02:33:38.837","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2825745","Week I-4 (1)","9","Date of Visit","30505339","0","23 Dec 2025 06:48:06:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251223 06:48:06.813","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2850205","Week I-8 (1)","10","Date of Visit","30824479","0","19 Jan 2026 01:15:25:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 01:15:25.580","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2883529","Week I-12 (1)","11","Date of Visit","31253782","0","23 Feb 2026 07:08:02:357","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 07:08:02.357","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2950509","Week M-4 (1)","15","Date of Visit","32164476","0","16 Mar 2026 01:57:46:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 01:57:46.583","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","3008369","Week M-8 (1)","16","Date of Visit","32963293","0","20 Apr 2026 02:25:24:623","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 02:25:24.623","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2850028","Screening","3","Date of Visit","30822409","0","05 Jan 2026 04:16:08:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260105 04:16:08.617","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2895850","Week I-0 (1)","7","Date of Visit","31412816","0","29 Jan 2026 00:38:01:513","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 00:38:01.513","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2901525","Week I-2 (1)","8","Date of Visit","31483062","0","11 Feb 2026 00:05:28:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 00:05:28.337","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2927617","Week I-4 (1)","9","Date of Visit","31831921","0","11 Mar 2026 00:26:10:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 00:26:10.627","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2998866","Week I-8 (1)","10","Date of Visit","32836719","0","26 Mar 2026 01:06:01:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 01:06:01.387","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","3034018","Week I-12 (1)","11","Date of Visit","33292011","0","21 Apr 2026 07:58:16:167","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 07:58:16.167","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2867185","Screening","3","Date of Visit","31055951","0","29 Jan 2026 00:59:54:483","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 00:59:54.483","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2897513","Week I-0 (1)","7","Date of Visit","31433267","0","29 Jan 2026 01:14:53:097","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 01:14:53.097","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2901569","Week I-2 (1)","8","Date of Visit","31483514","0","11 Feb 2026 00:16:11:877","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 00:16:11.877","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2927620","Week I-4 (1)","9","Date of Visit","31831968","0","11 Mar 2026 01:13:25:317","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 01:13:25.317","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2998930","Week I-8 (1)","10","Date of Visit","32837272","0","27 Mar 2026 03:16:44:377","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 03:16:44.377","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","3037012","Week I-12 (1)","11","Date of Visit","33333437","0","20 Apr 2026 02:31:54:313","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 02:31:54.313","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","196381","MY100072004","6330","2952423","Screening","3","Date of Visit","32194899","0","13 Apr 2026 00:11:39:360","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 00:11:39.360","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","200231","MY100072005","6330","3034070","Screening","3","Date of Visit","33292850","0","13 Apr 2026 00:13:05:513","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 00:13:05.513","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","201018","MY100072006","6330","3049101","Screening","3","Date of Visit","33497627","0","19 May 2026 01:25:52:657","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 01:25:52.657","","" +"MYS","9011","DD5-MY10008","Hospital Sultanah Aminah","198351","MY100082001","6330","2995680","Screening","3","Date of Visit","32792488","0","16 Mar 2026 03:18:46:997","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 03:18:46.997","","" +"MYS","9011","DD5-MY10008","Hospital Sultanah Aminah","198351","MY100082001","6330","3061060","Week I-0 (1)","7","Date of Visit","33644146","0","14 Apr 2026 08:07:46:590","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 08:07:46.590","","" +"MYS","9011","DD5-MY10008","Hospital Sultanah Aminah","198351","MY100082001","6330","3064088","Week I-2 (1)","8","Date of Visit","33685912","0","04 May 2026 06:06:35:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 06:06:35.823","","" +"MYS","9011","DD5-MY10008","Hospital Sultanah Aminah","198351","MY100082001","6330","3126344","Week I-4 (1)","9","Date of Visit","34536000","0","13 May 2026 07:19:39:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 07:19:39.413","","" +"NLD","9595","DD5-NL10004","AMC","200276","NL100042001","6330","3035043","Screening","3","Date of Visit","33306534","0","26 Mar 2026 10:44:13:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 10:44:13.977","","" +"NLD","9595","DD5-NL10004","AMC","200276","NL100042001","6330","3087008","Week I-0 (1)","7","Date of Visit","34036827","0","28 Apr 2026 09:19:40:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 09:19:40.557","","" +"NLD","9595","DD5-NL10004","AMC","200276","NL100042001","6330","3114424","Week I-2 (1)","8","Date of Visit","34358030","0","21 May 2026 08:37:50:747","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 08:37:50.747","","" +"NLD","9595","DD5-NL10004","AMC","200276","NL100042001","6330","3205593","Week I-4 (1)","9","Date of Visit","35217603","0","21 May 2026 08:43:43:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 08:43:43.230","","" +"NLD","9595","DD5-NL10004","AMC","200908","NL100042002","6330","3046697","Screening","3","Date of Visit","33467381","0","07 Apr 2026 12:39:53:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 12:39:53.817","","" +"NLD","9595","DD5-NL10004","AMC","200908","NL100042002","6330","3125524","Week I-0 (1)","7","Date of Visit","34525273","0","01 May 2026 10:40:07:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 10:40:07.857","","" +"NLD","9595","DD5-NL10004","AMC","200908","NL100042002","6330","3125559","Week I-2 (1)","8","Date of Visit","34525948","0","15 May 2026 09:08:37:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 09:08:37.227","","" +"NLD","9595","DD5-NL10004","AMC","202001","NL100042003","6330","3069395","Screening","3","Date of Visit","33765964","0","16 Apr 2026 10:16:23:233","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 10:16:23.233","","" +"NLD","9619","DD5-NL10005","Radboud Umcn","200679","NL100052001","6330","3041885","Screening","3","Date of Visit","33396774","0","12 May 2026 13:36:50:263","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 13:36:50.263","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192399","PL100012001","6330","2868562","Screening","3","Date of Visit","31073118","0","10 Mar 2026 14:23:31:690","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 14:23:31.690","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","2874870","Screening","3","Date of Visit","31149355","0","14 Jan 2026 15:39:02:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260114 15:39:02.773","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","2940911","Week I-0 (1)","7","Date of Visit","32037597","0","17 Feb 2026 15:18:11:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 15:18:11.587","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","2941832","Week I-2 (1)","8","Date of Visit","32049447","0","05 Mar 2026 09:15:36:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 09:15:36.577","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","2978730","Week I-4 (1)","9","Date of Visit","32551170","0","20 Mar 2026 10:47:06:760","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 10:47:06.760","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","3022018","Week I-8 (1)","10","Date of Visit","33136195","0","16 Apr 2026 09:42:01:310","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 09:42:01.310","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","3069612","Week I-12 (1)","11","Date of Visit","33770098","0","14 May 2026 08:56:30:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 08:56:30.463","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","2877642","Screening","3","Date of Visit","31183306","0","15 Jan 2026 12:43:47:623","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260115 12:43:47.623","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","2943907","Week I-0 (1)","7","Date of Visit","32076190","0","19 Feb 2026 12:44:50:227","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 12:44:50.227","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","2946678","Week I-2 (1)","8","Date of Visit","32113147","0","05 Mar 2026 10:00:50:500","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 10:00:50.500","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","2978926","Week I-4 (1)","9","Date of Visit","32553635","0","20 Mar 2026 10:56:41:370","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 10:56:41.370","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","3022027","Week I-8 (1)","10","Date of Visit","33136410","0","15 Apr 2026 08:46:51:690","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 08:46:51.690","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","3066900","Week I-12 (1)","11","Date of Visit","33723843","0","13 May 2026 14:47:22:457","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 14:47:22.457","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192829","PL100012004","6330","2878027","Screening","3","Date of Visit","31187515","0","06 Feb 2026 10:05:29:157","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 10:05:29.157","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","2878270","Screening","3","Date of Visit","31190788","0","15 Jan 2026 13:40:35:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260115 13:40:35.693","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","2940648","Week I-0 (1)","7","Date of Visit","32033850","0","17 Feb 2026 14:22:24:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 14:22:24.803","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","2941519","Week I-2 (1)","8","Date of Visit","32045985","0","05 Mar 2026 09:38:39:907","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 09:38:39.907","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","2978840","Week I-4 (1)","9","Date of Visit","32552141","0","20 Mar 2026 10:23:31:380","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 10:23:31.380","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","3021941","Week I-8 (1)","10","Date of Visit","33135618","0","15 Apr 2026 12:23:36:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 12:23:36.867","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","3067589","Week I-12 (1)","11","Date of Visit","33739959","0","14 May 2026 08:22:08:997","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 08:22:08.997","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2878294","Screening","3","Date of Visit","31191149","0","15 Jan 2026 14:07:26:787","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260115 14:07:26.787","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2929587","Week I-0 (1)","7","Date of Visit","31858635","0","12 Feb 2026 10:46:56:067","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 10:46:56.067","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2931976","Week I-2 (1)","8","Date of Visit","31897740","0","25 Feb 2026 12:46:12:173","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 12:46:12.173","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2957626","Week I-4 (1)","9","Date of Visit","32281725","0","10 Mar 2026 14:09:54:183","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 14:09:54.183","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2998007","Week I-8 (1)","10","Date of Visit","32824051","0","07 Apr 2026 11:07:13:847","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 11:07:13.847","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","3051555","Week I-12 (1)","11","Date of Visit","33526499","0","06 May 2026 09:14:54:510","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 09:14:54.510","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","2880159","Screening","3","Date of Visit","31214913","0","19 Jan 2026 09:17:59:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 09:17:59.113","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","2955393","Week I-0 (1)","7","Date of Visit","32246445","0","25 Feb 2026 14:00:44:620","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 14:00:44.620","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","2957773","Week I-2 (1)","8","Date of Visit","32284222","0","12 Mar 2026 11:01:43:777","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 11:01:43.777","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","3003955","Week I-4 (1)","9","Date of Visit","32903169","0","26 Mar 2026 09:12:37:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 09:12:37.173","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","3035108","Week I-8 (1)","10","Date of Visit","33308025","0","20 May 2026 09:59:47:287","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 09:59:47.287","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","3203316","Week I-12 (1)","11","Date of Visit","35188717","0","20 May 2026 10:00:42:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 10:00:42.577","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193787","PL100012008","6330","2898120","Screening","3","Date of Visit","31440730","0","02 Mar 2026 14:20:36:107","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 14:20:36.107","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193895","PL100012009","6330","2900655","Screening","3","Date of Visit","31472400","0","05 Mar 2026 09:11:27:043","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 09:11:27.043","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193916","PL100012010","6330","2901135","Screening","3","Date of Visit","31477583","0","25 Feb 2026 09:38:03:703","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 09:38:03.703","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194440","PL100012011","6330","2912610","Screening","3","Date of Visit","31625379","0","12 Feb 2026 10:16:09:710","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 10:16:09.710","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194508","PL100012012","6330","2914075","Screening","3","Date of Visit","31641826","0","05 Mar 2026 09:13:19:957","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 09:13:19.957","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","2914363","Screening","3","Date of Visit","31644437","0","06 Feb 2026 10:22:30:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 10:22:30.613","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","3016739","Week I-0 (1)","7","Date of Visit","33075096","0","24 Mar 2026 13:09:02:290","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 13:09:02.290","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","3029685","Week I-2 (1)","8","Date of Visit","33234306","0","01 Apr 2026 12:05:46:477","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 12:05:46.477","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","3045157","Week I-4 (1)","9","Date of Visit","33443134","0","16 Apr 2026 10:15:17:713","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 10:15:17.713","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","3069711","Week I-8 (1)","10","Date of Visit","33771364","0","13 May 2026 14:19:48:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 14:19:48.277","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194694","PL100012014","6330","2917890","Screening","3","Date of Visit","31697014","0","19 Feb 2026 10:31:13:403","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 10:31:13.403","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","2926816","Screening","3","Date of Visit","31820869","0","11 Feb 2026 09:38:43:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 09:38:43.517","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3029460","Week I-0 (1)","7","Date of Visit","33231894","0","26 Mar 2026 09:59:55:013","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 09:59:55.013","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3035289","Week I-2 (1)","8","Date of Visit","33309677","0","08 Apr 2026 13:58:54:540","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 13:58:54.540","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3055003","Week I-4 (1)","9","Date of Visit","33571642","0","22 Apr 2026 09:58:48:703","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 09:58:48.703","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3083738","Week I-8 (1)","10","Date of Visit","33986399","0","20 May 2026 10:56:16:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 10:56:16.737","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3193899","Unscheduled 20260421","59","Date of Visit","35052630","0","14 May 2026 10:03:02:770","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","COLLECTING DNA SAMPLE WHICH WAS NOT COLLECTED DURING DAY1 VISIT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 10:03:02.770","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","2927066","Screening","3","Date of Visit","31823713","0","11 Feb 2026 11:39:17:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 11:39:17.050","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","3016355","Week I-0 (1)","7","Date of Visit","33070462","0","24 Mar 2026 12:19:01:317","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 12:19:01.317","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","3029520","Week I-2 (1)","8","Date of Visit","33232490","0","02 Apr 2026 10:27:13:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 10:27:13.133","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","3046983","Week I-4 (1)","9","Date of Visit","33470734","0","15 Apr 2026 07:44:58:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 07:44:58.177","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","3066705","Week I-8 (1)","10","Date of Visit","33720541","0","20 May 2026 09:48:17:690","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 09:48:17.690","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196420","PL100012017","6330","2953336","Screening","3","Date of Visit","32209536","0","02 Apr 2026 11:34:39:170","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 11:34:39.170","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196652","PL100012018","6330","2958090","Screening","3","Date of Visit","32289477","0","02 Mar 2026 11:00:57:537","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 11:00:57.537","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196652","PL100012018","6330","3045099","Week I-0 (1)","7","Date of Visit","33442550","0","02 Apr 2026 11:57:02:727","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 11:57:02.727","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196652","PL100012018","6330","3047165","Week I-2 (1)","8","Date of Visit","33473032","0","15 Apr 2026 12:30:50:923","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 12:30:50.923","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196652","PL100012018","6330","3067600","Week I-4 (1)","9","Date of Visit","33740267","0","28 Apr 2026 13:12:22:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 13:12:22.417","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","202625","PL100012019","6330","3081767","Screening","3","Date of Visit","33959401","0","13 May 2026 12:28:11:417","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 12:28:11.417","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","204236","PL100012020","6330","3119249","Screening","3","Date of Visit","34449686","0","04 May 2026 11:58:01:560","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 11:58:01.560","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2872148","Screening","3","Date of Visit","31114375","0","12 Jan 2026 11:36:17:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260112 11:36:17.313","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2905827","Week I-0 (1)","7","Date of Visit","31535871","0","10 Feb 2026 12:37:18:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 12:37:18.940","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2926383","Week I-2 (1)","8","Date of Visit","31813598","0","11 Feb 2026 09:07:40:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 09:07:40.593","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2928858","Week I-4 (1)","9","Date of Visit","31847940","0","09 Mar 2026 11:30:02:287","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 11:30:02.287","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2990442","Week I-8 (1)","10","Date of Visit","32715754","0","30 Mar 2026 05:45:26:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 05:45:26.163","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","3039546","Week I-12 (1)","11","Date of Visit","33368123","0","06 May 2026 07:13:20:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:13:20.557","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","3039550","Unscheduled 20260326","59","Date of Visit","33368151","0","30 Mar 2026 05:50:38:927","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BIOCHEMISTRY AND HEMATOLOGY CHECKUP","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 05:50:38.927","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2872226","Screening","3","Date of Visit","31115236","0","20 Jan 2026 14:26:43:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 14:26:43.867","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2920080","Week I-0 (1)","7","Date of Visit","31726112","0","10 Feb 2026 11:25:04:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 11:25:04.887","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2926127","Week I-2 (1)","8","Date of Visit","31809633","0","23 Feb 2026 11:21:10:680","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 11:21:10.680","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2944604","Week I-4 (1)","9","Date of Visit","32085391","0","13 Mar 2026 08:23:08:300","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 08:23:08.300","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","3006074","Week I-8 (1)","10","Date of Visit","32933598","0","10 Apr 2026 09:59:02:670","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 09:59:02.670","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","3059591","Week I-12 (1)","11","Date of Visit","33627591","0","06 May 2026 08:16:01:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 08:16:01.880","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2903845","Unscheduled 20260127","59","Date of Visit","31516050","0","29 Jan 2026 10:59:07:897","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","FSH RETEST","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 10:59:07.897","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","3025726","Unscheduled 20260320","59","Date of Visit","33185453","0","23 Mar 2026 11:28:46:717","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","RETEST FOR CALPROTECTIN","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 11:28:46.717","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2874496","Screening","3","Date of Visit","31143966","0","29 Jan 2026 06:51:08:973","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 06:51:08.973","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2902345","Week I-0 (1)","7","Date of Visit","31492053","0","29 Jan 2026 11:28:11:703","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260129 11:28:11.703","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2903890","Week I-2 (1)","8","Date of Visit","31516742","0","12 Feb 2026 13:10:01:187","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 13:10:01.187","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2932811","Week I-4 (1)","9","Date of Visit","31910523","0","09 Mar 2026 10:58:06:573","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 10:58:06.573","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2990359","Week I-8 (1)","10","Date of Visit","32714612","0","30 Mar 2026 05:56:03:420","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 05:56:03.420","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","3039555","Week I-12 (1)","11","Date of Visit","33368295","0","06 May 2026 06:33:59:813","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 06:33:59.813","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","3039558","Unscheduled 20260323","59","Date of Visit","33369330","0","30 Mar 2026 06:47:49:160","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","23 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BIOCHEMISTRY AND HEMATOLOGY CHECKUP","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 06:47:49.160","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2879015","Screening","3","Date of Visit","31200323","0","15 Jan 2026 14:03:26:963","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260115 14:03:26.963","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2920211","Week I-0 (1)","7","Date of Visit","31728463","0","11 Feb 2026 10:16:52:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 10:16:52.150","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2929064","Week I-2 (1)","8","Date of Visit","31851145","0","04 Mar 2026 12:38:01:007","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 12:38:01.007","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2976938","Week I-4 (1)","9","Date of Visit","32529100","0","10 Mar 2026 13:30:26:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 13:30:26.667","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2997915","Week I-8 (1)","10","Date of Visit","32822591","0","09 Apr 2026 10:38:28:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 10:38:28.317","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","3057165","Week I-12 (1)","11","Date of Visit","33598790","0","06 May 2026 06:57:01:220","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 06:57:01.220","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2929061","Unscheduled 20260128","59","Date of Visit","31851015","0","11 Feb 2026 10:14:24:403","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","28 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","RETEST FOR BIOCHEMISTRY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 10:14:24.403","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2952884","Unscheduled 20260121","59","Date of Visit","32205450","0","24 Feb 2026 07:44:25:377","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","CHEST CT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 07:44:25.377","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193255","PL100022005","6330","2886969","Screening","3","Date of Visit","31295831","0","13 Feb 2026 10:42:00:737","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 10:42:00.737","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","2887060","Screening","3","Date of Visit","31297212","0","20 Jan 2026 14:28:28:143","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 14:28:28.143","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","2919939","Week I-0 (1)","7","Date of Visit","31724581","0","11 Feb 2026 13:02:41:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 13:02:41.697","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","2929533","Week I-2 (1)","8","Date of Visit","31857766","0","23 Feb 2026 12:10:51:760","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 12:10:51.760","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","2951309","Week I-4 (1)","9","Date of Visit","32175860","0","13 Mar 2026 08:42:44:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 08:42:44.580","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","3006135","Week I-8 (1)","10","Date of Visit","32934351","0","10 Apr 2026 09:42:28:657","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 09:42:28.657","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","3059554","Week I-12 (1)","11","Date of Visit","33627234","0","06 May 2026 07:50:55:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 07:50:55.137","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","195964","PL100022007","6330","2943669","Screening","3","Date of Visit","32072994","0","06 Mar 2026 09:37:07:530","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 09:37:07.530","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","195964","PL100022007","6330","2981793","Unscheduled 20260226","59","Date of Visit","32591255","0","06 Mar 2026 10:37:14:677","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","26 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","TB RETEST","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 10:37:14.677","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","2950556","Screening","3","Date of Visit","32165016","0","30 Mar 2026 08:40:52:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 08:40:52.097","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","3025108","Week I-0 (1)","7","Date of Visit","33176093","0","30 Mar 2026 09:39:24:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 09:39:24.137","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","3040093","Week I-2 (1)","8","Date of Visit","33375451","0","10 Apr 2026 10:20:13:483","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 10:20:13.483","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","3059667","Week I-4 (1)","9","Date of Visit","33628236","0","07 May 2026 08:08:56:293","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 08:08:56.293","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","3136143","Week I-8 (1)","10","Date of Visit","34711296","0","19 May 2026 12:30:04:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 12:30:04.133","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197198","PL100022009","6330","2969288","Screening","3","Date of Visit","32422666","0","30 Mar 2026 10:27:30:377","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 10:27:30.377","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197198","PL100022009","6330","3018354","Week I-0 (1)","7","Date of Visit","33094638","0","30 Mar 2026 11:31:01:013","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 11:31:01.013","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197198","PL100022009","6330","3040516","Week I-2 (1)","8","Date of Visit","33380200","0","10 Apr 2026 09:32:39:630","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 09:32:39.630","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197198","PL100022009","6330","3059526","Week I-4 (1)","9","Date of Visit","33626881","0","22 Apr 2026 10:56:15:753","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 10:56:15.753","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197206","PL100022010","6330","2969486","Screening","3","Date of Visit","32426452","0","31 Mar 2026 11:16:47:993","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 11:16:47.993","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197206","PL100022010","6330","3028839","Week I-0 (1)","7","Date of Visit","33224418","0","31 Mar 2026 13:15:17:657","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 13:15:17.657","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197206","PL100022010","6330","3043231","Week I-2 (1)","8","Date of Visit","33411759","0","10 Apr 2026 10:24:42:787","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 10:24:42.787","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197206","PL100022010","6330","3059681","Week I-4 (1)","9","Date of Visit","33628343","0","07 May 2026 09:15:38:197","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 09:15:38.197","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","198771","PL100022011","6330","3003471","Screening","3","Date of Visit","32895910","0","01 Apr 2026 06:44:18:217","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 06:44:18.217","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199047","PL100022012","6330","3009742","Screening","3","Date of Visit","32981524","0","07 Apr 2026 11:53:41:207","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 11:53:41.207","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199047","PL100022012","6330","3046790","Week I-0 (1)","7","Date of Visit","33468674","0","10 Apr 2026 08:23:08:257","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 08:23:08.257","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199047","PL100022012","6330","3059266","Week I-2 (1)","8","Date of Visit","33624706","0","22 Apr 2026 10:36:23:470","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 10:36:23.470","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199047","PL100022012","6330","3083990","Week I-4 (1)","9","Date of Visit","33988854","0","07 May 2026 10:30:27:433","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 10:30:27.433","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199193","PL100022013","6330","3012947","Screening","3","Date of Visit","33025581","0","21 Apr 2026 06:09:25:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 06:09:25.463","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199193","PL100022013","6330","3064463","Week I-0 (1)","7","Date of Visit","33690765","0","21 Apr 2026 09:07:08:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 09:07:08.353","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199193","PL100022013","6330","3079801","Week I-2 (1)","8","Date of Visit","33928128","0","07 May 2026 12:58:57:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 12:58:57.657","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199193","PL100022013","6330","3137643","Week I-4 (1)","9","Date of Visit","34736590","0","19 May 2026 12:31:48:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 12:31:48.813","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3021179","Screening","3","Date of Visit","33128455","0","31 Mar 2026 13:12:34:157","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 13:12:34.157","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3051088","Week I-0 (1)","7","Date of Visit","33520355","0","10 Apr 2026 12:32:51:210","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 12:32:51.210","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3059977","Week I-2 (1)","8","Date of Visit","33631957","0","07 May 2026 07:36:03:490","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 07:36:03.490","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3136048","Week I-4 (1)","9","Date of Visit","34709795","0","08 May 2026 07:14:42:847","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 07:14:42.847","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3137617","Unscheduled 20260424","59","Date of Visit","34736377","0","07 May 2026 12:53:38:537","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","24 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BLOOD RETEST","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 12:53:38.537","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201641","PL100022015","6330","3061388","Screening","3","Date of Visit","33648573","0","28 Apr 2026 10:15:19:757","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 10:15:19.757","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201641","PL100022015","6330","3113994","Week I-0 (1)","7","Date of Visit","34348887","0","07 May 2026 11:29:27:290","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 11:29:27.290","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201978","PL100022016","6330","3068939","Screening","3","Date of Visit","33759249","0","05 May 2026 09:05:08:527","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 09:05:08.527","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201995","PL100022017","6330","3069300","Screening","3","Date of Visit","33764302","0","28 Apr 2026 11:45:50:727","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:45:50.727","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","203839","PL100022018","6330","3111377","Screening","3","Date of Visit","34312673","0","27 Apr 2026 08:50:36:813","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 08:50:36.813","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","209100","PL100022019","6330","3172932","Screening","3","Date of Visit","34864807","0","11 May 2026 06:21:23:173","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 06:21:23.173","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","210836","PL100022020","6330","3193308","Screening","3","Date of Visit","35041601","0","14 May 2026 07:12:10:843","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 07:12:10.843","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","194526","PL100042001","6330","2914497","Screening","3","Date of Visit","31645757","0","03 Mar 2026 10:08:46:857","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 10:08:46.857","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","199247","PL100042002","6330","3013979","Screening","3","Date of Visit","33039454","0","20 Apr 2026 12:11:19:473","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 12:11:19.473","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","199257","PL100042003","6330","3014253","Screening","3","Date of Visit","33042159","0","29 Apr 2026 05:21:55:850","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 05:21:55.850","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","201819","PL100042004","6330","3065078","Screening","3","Date of Visit","33698035","0","29 Apr 2026 06:21:38:083","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 06:21:38.083","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","204856","PL100042005","6330","3132823","Screening","3","Date of Visit","34644634","0","06 May 2026 11:58:05:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 11:58:05.433","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","204856","PL100042005","6330","3188947","Week I-0 (1)","7","Date of Visit","34982015","0","13 May 2026 06:54:31:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 06:54:31.177","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2874976","Screening","3","Date of Visit","31150330","0","23 Jan 2026 14:07:44:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 14:07:44.803","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2917325","Week I-0 (1)","7","Date of Visit","31689554","0","09 Feb 2026 14:04:39:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 14:04:39.790","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2923300","Week I-2 (1)","8","Date of Visit","31769311","0","23 Feb 2026 11:10:58:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 11:10:58.323","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2951180","Week I-4 (1)","9","Date of Visit","32174325","0","04 Mar 2026 09:13:21:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 09:13:21.810","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2976226","Week I-8 (1)","10","Date of Visit","32520312","0","09 Apr 2026 09:00:15:370","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 09:00:15.370","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","3056763","Week I-12 (1)","11","Date of Visit","33594443","0","13 May 2026 11:04:00:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 11:04:00.080","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","2879654","Screening","3","Date of Visit","31208626","0","30 Jan 2026 14:49:53:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260130 14:49:53.027","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","2953327","Week I-0 (1)","7","Date of Visit","32209498","0","04 Mar 2026 07:32:24:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 07:32:24.310","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","2975935","Week I-2 (1)","8","Date of Visit","32516142","0","18 Mar 2026 08:03:11:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 08:03:11.087","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","3015664","Week I-4 (1)","9","Date of Visit","33058863","0","09 Apr 2026 08:40:38:793","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 08:40:38.793","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","3056699","Week I-8 (1)","10","Date of Visit","33593610","0","30 Apr 2026 06:35:58:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 06:35:58.020","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","3119946","Week I-12 (1)","11","Date of Visit","34460263","0","21 May 2026 09:39:37:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 09:39:37.597","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","193444","PL100052003","6330","2890664","Screening","3","Date of Visit","31340596","0","25 Feb 2026 08:52:35:817","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 08:52:35.817","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","2954926","Screening","3","Date of Visit","32238752","0","25 Mar 2026 10:57:54:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 10:57:54.430","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","3051120","Week I-0 (1)","7","Date of Visit","33520821","0","15 Apr 2026 07:37:46:973","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 07:37:46.973","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","3066688","Week I-2 (1)","8","Date of Visit","33720177","0","30 Apr 2026 06:38:42:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 06:38:42.447","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","3119952","Week I-4 (1)","9","Date of Visit","34460309","0","14 May 2026 08:39:23:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 08:39:23.543","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","3066576","Unscheduled 20260326","59","Date of Visit","33718937","0","15 Apr 2026 07:12:39:227","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","THE VISIT TOOK PLACE DUE TO HBV COLLECTION.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 07:12:39.227","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196501","PL100052005","6330","2955044","Screening","3","Date of Visit","32239956","0","09 Apr 2026 17:49:51:997","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 17:49:51.997","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","2955213","Screening","3","Date of Visit","32243317","0","25 Mar 2026 09:30:01:067","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 09:30:01.067","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","3018472","Week I-0 (1)","7","Date of Visit","33096516","0","25 Mar 2026 10:35:26:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 10:35:26.667","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","3032160","Week I-2 (1)","8","Date of Visit","33269595","0","15 Apr 2026 08:50:20:333","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 08:50:20.333","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","3066909","Week I-4 (1)","9","Date of Visit","33724004","0","22 Apr 2026 10:28:05:497","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 10:28:05.497","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","3083923","Week I-8 (1)","10","Date of Visit","33988292","0","19 May 2026 07:40:28:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 07:40:28.077","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","2965686","Screening","3","Date of Visit","32377184","0","25 Mar 2026 10:58:56:323","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 10:58:56.323","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","3028083","Week I-0 (1)","7","Date of Visit","33215549","0","26 Mar 2026 10:40:33:277","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 10:40:33.277","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","3035399","Week I-2 (1)","8","Date of Visit","33311531","0","16 Apr 2026 07:39:06:473","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 07:39:06.473","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","3069208","Week I-4 (1)","9","Date of Visit","33763192","0","29 Apr 2026 06:17:57:463","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 06:17:57.463","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","3116567","Week I-8 (1)","10","Date of Visit","34393610","0","19 May 2026 07:54:42:090","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 07:54:42.090","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199204","PL100052008","6330","3013105","Screening","3","Date of Visit","33027448","0","25 Mar 2026 11:00:23:893","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 11:00:23.893","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199204","PL100052008","6330","3111107","Week I-0 (1)","7","Date of Visit","34310189","0","08 May 2026 12:48:34:960","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 12:48:34.960","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199204","PL100052008","6330","3168256","Week I-2 (1)","8","Date of Visit","34830919","0","15 May 2026 05:52:25:367","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 05:52:25.367","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199482","PL100052009","6330","3019090","Screening","3","Date of Visit","33103817","0","25 Mar 2026 11:01:10:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 11:01:10.537","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199482","PL100052009","6330","3079813","Week I-0 (1)","7","Date of Visit","33928452","0","29 Apr 2026 06:35:30: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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 06:35:30.297","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199482","PL100052009","6330","3116611","Week I-2 (1)","8","Date of Visit","34394085","0","14 May 2026 08:27:42:377","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 08:27:42.377","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199792","PL100052010","6330","3025328","Screening","3","Date of Visit","33179393","0","25 Mar 2026 11:08:44:240","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 11:08:44.240","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199792","PL100052010","6330","3083246","Week I-0 (1)","7","Date of Visit","33978547","0","30 Apr 2026 07:41:34:650","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:41:34.650","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199792","PL100052010","6330","3120105","Week I-2 (1)","8","Date of Visit","34462562","0","14 May 2026 08:19:59:907","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 08:19:59.907","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","200291","PL100052011","6330","3035320","Screening","3","Date of Visit","33309958","0","14 May 2026 08:16:52:957","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 08:16:52.957","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","202007","PL100052012","6330","3069532","Screening","3","Date of Visit","33768953","0","24 Apr 2026 06:03:03:577","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 06:03:03.577","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","202007","PL100052012","6330","3187318","Week I-0 (1)","7","Date of Visit","34958633","0","15 May 2026 06:00:43:633","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 06:00:43.633","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","202739","PL100052013","6330","3084271","Screening","3","Date of Visit","33992755","0","24 Apr 2026 06:05:11:900","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 06:05:11.900","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","205076","PL100052014","6330","3137342","Screening","3","Date of Visit","34732214","0","07 May 2026 11:26:18:737","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 11:26:18.737","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190931","PL100062001","6330","2836066","Screening","3","Date of Visit","30640271","0","04 Feb 2026 08:52:16:717","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 08:52:16.717","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2836411","Screening","3","Date of Visit","30645098","0","12 Jan 2026 11:24:39:423","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260112 11:24:39.423","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2898988","Week I-0 (1)","7","Date of Visit","31451240","0","28 Jan 2026 11:24:12:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 11:24:12.430","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2900494","Week I-2 (1)","8","Date of Visit","31470778","0","25 Feb 2026 08:15:32:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 08:15:32.897","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2956808","Week I-4 (1)","9","Date of Visit","32267620","0","03 Mar 2026 13:36:02:513","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 13:36:02.513","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2974642","Week I-8 (1)","10","Date of Visit","32499937","0","01 Apr 2026 08:01:43:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 08:01:43.093","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","3044550","Week I-12 (1)","11","Date of Visit","33435549","0","07 May 2026 07:47:05:923","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 07:47:05.923","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2848862","Screening","3","Date of Visit","30806263","0","04 Feb 2026 08:56:08:787","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 08:56:08.787","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2912658","Week I-0 (1)","7","Date of Visit","31625724","0","04 Feb 2026 09:59:48:507","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 09:59:48.507","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2914200","Week I-2 (1)","8","Date of Visit","31642596","0","25 Feb 2026 09:15:38:573","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 09:15:38.573","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2957010","Week I-4 (1)","9","Date of Visit","32270660","0","05 Mar 2026 13:53:18:053","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 13:53:18.053","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2979926","Week I-8 (1)","10","Date of Visit","32565158","0","01 Apr 2026 08:23:28:747","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 08:23:28.747","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","3044624","Week I-12 (1)","11","Date of Visit","33436452","0","07 May 2026 08:42:48:467","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 08:42:48.467","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193344","PL100062004","6330","2888549","Screening","3","Date of Visit","31315247","0","06 May 2026 10:03:50:190","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 10:03:50.190","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193348","PL100062005","6330","2888626","Screening","3","Date of Visit","31316156","0","25 Feb 2026 09:43:01:723","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 09:43:01.723","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193348","PL100062005","6330","2974896","Week I-0 (1)","7","Date of Visit","32502858","0","05 Mar 2026 14:15:06:457","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 14:15:06.457","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193348","PL100062005","6330","2980046","Week I-2 (1)","8","Date of Visit","32567192","0","18 Mar 2026 14:04:24:070","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 14:04:24.070","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193348","PL100062005","6330","3017098","Week I-4 (1)","9","Date of Visit","33079822","0","01 Apr 2026 10:15:26:593","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 10:15:26.593","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193468","PL100062006","6330","2891146","Screening","3","Date of Visit","31346939","0","06 May 2026 10:10:18:357","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 10:10:18.357","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193832","PL100062007","6330","2899105","Screening","3","Date of Visit","31452517","0","06 May 2026 10:38:02:037","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 10:38:02.037","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195088","PL100062008","6330","2926920","Screening","3","Date of Visit","31822205","0","23 Mar 2026 13:44:35:917","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 13:44:35.917","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195088","PL100062008","6330","3014241","Week I-0 (1)","7","Date of Visit","33041951","0","24 Mar 2026 11:14:13:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 11:14:13.317","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195088","PL100062008","6330","3029273","Week I-2 (1)","8","Date of Visit","33229284","0","07 May 2026 10:20:16:890","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 10:20:16.890","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195088","PL100062008","6330","3136932","Week I-4 (1)","9","Date of Visit","34723865","0","07 May 2026 10:33:06:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 10:33:06.657","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195885","PL100062009","6330","2942006","Screening","3","Date of Visit","32051732","0","07 Apr 2026 11:38:16:933","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 11:38:16.933","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195885","PL100062009","6330","3029970","Week I-0 (1)","7","Date of Visit","33238109","0","07 May 2026 10:42:16:907","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 10:42:16.907","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195885","PL100062009","6330","3137034","Week I-2 (1)","8","Date of Visit","34725673","0","07 May 2026 10:51:45:167","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 10:51:45.167","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195885","PL100062009","6330","3137128","Week I-4 (1)","9","Date of Visit","34727547","0","07 May 2026 10:56:51:647","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 10:56:51.647","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195998","PL100062010","6330","2944615","Screening","3","Date of Visit","32085461","0","07 May 2026 12:14:41:460","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 12:14:41.460","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","196661","PL100062011","6330","2958236","Screening","3","Date of Visit","32291172","0","07 May 2026 12:44:22:947","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 12:44:22.947","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","196661","PL100062011","6330","3052100","Week I-0 (1)","7","Date of Visit","33533511","0","07 May 2026 13:23:00:140","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 13:23:00.140","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","196661","PL100062011","6330","3137709","Week I-2 (1)","8","Date of Visit","34737446","0","07 May 2026 13:41:08:877","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 13:41:08.877","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","196661","PL100062011","6330","3137724","Week I-4 (1)","9","Date of Visit","34737680","0","07 May 2026 13:43:23:740","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 13:43:23.740","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","198704","PL100062012","6330","3002073","Screening","3","Date of Visit","32878103","0","11 Mar 2026 16:19:39:903","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAR 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 16:19:39.903","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","201174","PL100062013","6330","3052042","Screening","3","Date of Visit","33532575","0","07 Apr 2026 13:58:17:977","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 13:58:17.977","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","202615","PL100062014","6330","3081481","Screening","3","Date of Visit","33955872","0","21 Apr 2026 14:27:33:577","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 14:27:33.577","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","203997","PL100062015","6330","3114125","Screening","3","Date of Visit","34351784","0","28 Apr 2026 08:48:09:477","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 08:48:09.477","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","204817","PL100062016","6330","3131940","Screening","3","Date of Visit","34633012","0","15 May 2026 07:49:40:143","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 07:49:40.143","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","2900890","Screening","3","Date of Visit","31475098","0","06 Feb 2026 14:38:00:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 14:38:00.587","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","2961159","Week I-0 (1)","7","Date of Visit","32330505","0","02 Mar 2026 11:37:21:337","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 11:37:21.337","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","2966773","Week I-2 (1)","8","Date of Visit","32385260","0","16 Mar 2026 11:14:12:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 11:14:12.213","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","3009752","Week I-4 (1)","9","Date of Visit","32981688","0","30 Mar 2026 13:42:26:603","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 13:42:26.603","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","3040821","Week I-8 (1)","10","Date of Visit","33383699","0","27 Apr 2026 11:18:46:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 11:18:46.700","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","201588","PL100071002","6330","3060118","Screening","3","Date of Visit","33633400","0","16 Apr 2026 09:09:07:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 09:09:07.843","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","201769","PL100071003","6330","3064206","Screening","3","Date of Visit","33687179","0","17 Apr 2026 09:44:28:257","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 09:44:28.257","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","2867989","Screening","3","Date of Visit","31065809","0","08 Jan 2026 15:29:42:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260108 15:29:42.157","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","2931616","Week I-0 (1)","7","Date of Visit","31892281","0","16 Feb 2026 11:57:51:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 11:57:51.817","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","2939471","Week I-2 (1)","8","Date of Visit","32016886","0","27 Feb 2026 10:43:08:073","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 10:43:08.073","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","2962979","Week I-4 (1)","9","Date of Visit","32352893","0","13 Mar 2026 12:22:19:493","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 12:22:19.493","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","3006795","Week I-8 (1)","10","Date of Visit","32944034","0","09 Apr 2026 12:59:07:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 12:59:07.210","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","3057615","Week I-12 (1)","11","Date of Visit","33603602","0","12 May 2026 11:00:13:493","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 11:00:13.493","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","2868485","Screening","3","Date of Visit","31072072","0","14 Jan 2026 08:58:26:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260114 08:58:26.367","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","2932598","Week I-0 (1)","7","Date of Visit","31907978","0","17 Feb 2026 10:07:51:327","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 10:07:51.327","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","2940821","Week I-2 (1)","8","Date of Visit","32036090","0","27 Feb 2026 11:12:26:437","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 11:12:26.437","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","2963140","Week I-4 (1)","9","Date of Visit","32354353","0","13 Mar 2026 10:45:08:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 10:45:08.723","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","3006560","Week I-8 (1)","10","Date of Visit","32940821","0","09 Apr 2026 13:05:04:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 13:05:04.123","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","3057654","Week I-12 (1)","11","Date of Visit","33603988","0","12 May 2026 08:19:06:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 08:19:06.897","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","2868583","Screening","3","Date of Visit","31073229","0","09 Jan 2026 12:12:20:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 12:12:20.827","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","2939589","Week I-0 (1)","7","Date of Visit","32018497","0","19 Feb 2026 21:11:48:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 21:11:48.560","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","2947661","Week I-2 (1)","8","Date of Visit","32128154","0","06 Mar 2026 09:21:05:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 09:21:05.667","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","2981548","Week I-4 (1)","9","Date of Visit","32587982","0","18 Mar 2026 11:36:18:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 11:36:18.790","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","3016538","Week I-8 (1)","10","Date of Visit","33072239","0","20 Apr 2026 11:11:36:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 11:11:36.950","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","3077638","Week I-12 (1)","11","Date of Visit","33894554","0","12 May 2026 12:20:23:063","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 12:20:23.063","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","2914349","Screening","3","Date of Visit","31644334","0","09 Feb 2026 12:35:55:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 12:35:55.307","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","3016105","Week I-0 (1)","7","Date of Visit","33066735","0","20 Mar 2026 09:53:51:347","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 09:53:51.347","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","3021802","Week I-2 (1)","8","Date of Visit","33133453","0","02 Apr 2026 07:08:52:690","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 07:08:52.690","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","3046550","Week I-4 (1)","9","Date of Visit","33464971","0","20 Apr 2026 10:50:04:183","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 10:50:04.183","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","3077449","Week I-8 (1)","10","Date of Visit","33891803","0","18 May 2026 06:56:10:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 06:56:10.983","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","2929444","Screening","3","Date of Visit","31856349","0","13 Feb 2026 09:44:28:683","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 09:44:28.683","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","3004548","Week I-0 (1)","7","Date of Visit","32912711","0","16 Mar 2026 13:31:45:790","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 13:31:45.790","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","3010121","Week I-2 (1)","8","Date of Visit","32987613","0","27 Mar 2026 09:01:06:147","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 09:01:06.147","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","3037723","Week I-4 (1)","9","Date of Visit","33344357","0","10 Apr 2026 09:32:49:567","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 09:32:49.567","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","3059527","Week I-8 (1)","10","Date of Visit","33626914","0","07 May 2026 09:27:07:987","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 09:27:07.987","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","2929807","Screening","3","Date of Visit","31862287","0","13 Feb 2026 10:05:54:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 10:05:54.537","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","3003940","Week I-0 (1)","7","Date of Visit","32902951","0","21 May 2026 08:37:54:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 08:37:54.623","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","3009479","Week I-2 (1)","8","Date of Visit","32978202","0","30 Mar 2026 11:34:18:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 11:34:18.563","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","3040528","Week I-4 (1)","9","Date of Visit","33380285","0","10 Apr 2026 10:55:58:377","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 10:55:58.377","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","3059763","Week I-8 (1)","10","Date of Visit","33629178","0","12 May 2026 12:08:09:450","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 12:08:09.450","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","2933179","Screening","3","Date of Visit","31917024","0","17 Feb 2026 14:52:00:130","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 14:52:00.130","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","3027864","Week I-0 (1)","7","Date of Visit","33212867","0","25 Mar 2026 11:34:07:283","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 11:34:07.283","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","3032366","Week I-2 (1)","8","Date of Visit","33272588","0","10 Apr 2026 08:46:27:477","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 08:46:27.477","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","3059335","Week I-4 (1)","9","Date of Visit","33625421","0","27 Apr 2026 11:36:39:673","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 11:36:39.673","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","3111937","Week I-8 (1)","10","Date of Visit","34319817","0","21 May 2026 09:35:47:083","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 09:35:47.083","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","2946370","Screening","3","Date of Visit","32108101","0","23 Feb 2026 13:17:13:173","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 13:17:13.173","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","3032741","Week I-0 (1)","7","Date of Visit","33275788","0","26 Mar 2026 13:39:50:320","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 13:39:50.320","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","3035995","Week I-2 (1)","8","Date of Visit","33319640","0","10 Apr 2026 09:40:14:927","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 09:40:14.927","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","3059552","Week I-4 (1)","9","Date of Visit","33627188","0","29 Apr 2026 09:57:56:827","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 09:57:56.827","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","3117188","Week I-8 (1)","10","Date of Visit","34402550","0","21 May 2026 09:36:29:367","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 09:36:29.367","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200282","PL100072009","6330","3035129","Screening","3","Date of Visit","33308188","0","22 Apr 2026 10:46:43:197","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 10:46:43.197","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200299","PL100072010","6330","3035433","Screening","3","Date of Visit","33311638","0","30 Mar 2026 10:13:39:310","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 10:13:39.310","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200299","PL100072010","6330","3133870","Week I-0 (1)","7","Date of Visit","34667815","0","07 May 2026 08:25:46:577","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 08:25:46.577","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200550","PL100072011","6330","3040118","Screening","3","Date of Visit","33375777","0","31 Mar 2026 09:47:17:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 09:47:17.843","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200550","PL100072011","6330","3137042","Week I-0 (1)","7","Date of Visit","34725882","0","12 May 2026 13:55:41:943","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 13:55:41.943","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200550","PL100072011","6330","3188791","Week I-2 (1)","8","Date of Visit","34980308","0","22 May 2026 08:00:38:253","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 08:00:38.253","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200727","PL100072012","6330","3042933","Screening","3","Date of Visit","33408104","0","02 Apr 2026 11:25:31:517","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 11:25:31.517","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200727","PL100072012","6330","3126494","Week I-0 (1)","7","Date of Visit","34539142","0","06 May 2026 08:48:44:467","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 08:48:44.467","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200727","PL100072012","6330","3133715","Week I-2 (1)","8","Date of Visit","34664508","0","21 May 2026 10:48:06:080","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 10:48:06.080","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200834","PL100072013","6330","3045116","Screening","3","Date of Visit","33442688","0","20 May 2026 12:23:06:230","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 12:23:06.230","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200929","PL100072014","6330","3047123","Screening","3","Date of Visit","33472348","0","03 Apr 2026 07:14:13:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 07:14:13.507","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200929","PL100072014","6330","3088358","Week I-0 (1)","7","Date of Visit","34060271","0","28 Apr 2026 11:30:32:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:30:32.783","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200929","PL100072014","6330","3114854","Week I-2 (1)","8","Date of Visit","34364605","0","07 May 2026 10:08:39:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 10:08:39.567","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200929","PL100072014","6330","3136852","Week I-4 (1)","9","Date of Visit","34723476","0","15 May 2026 11:17:35:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 11:17:35.173","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","201242","PL100072015","6330","3053643","Screening","3","Date of Visit","33556502","0","13 Apr 2026 09:44:06:607","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 09:44:06.607","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","201242","PL100072015","6330","3133710","Week I-0 (1)","7","Date of Visit","34664415","0","07 May 2026 06:59:44:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 06:59:44.417","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202447","PL100072016","6330","3077815","Screening","3","Date of Visit","33900162","0","22 Apr 2026 12:09:40:597","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 12:09:40.597","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202749","PL100072017","6330","3084511","Screening","3","Date of Visit","33995850","0","27 Apr 2026 07:26:55:233","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 07:26:55.233","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202749","PL100072017","6330","3194390","Week I-0 (1)","7","Date of Visit","35060712","0","19 May 2026 08:54:10:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 08:54:10.353","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202775","PL100072018","6330","3085087","Screening","3","Date of Visit","34011924","0","27 Apr 2026 07:45:09:360","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 07:45:09.360","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202775","PL100072018","6330","3203437","Week I-0 (1)","7","Date of Visit","35190238","0","22 May 2026 10:52:12:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 10:52:12.833","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202939","PL100072019","6330","3088965","Screening","3","Date of Visit","34072298","0","27 Apr 2026 10:18:55:097","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 10:18:55.097","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202941","PL100072020","6330","3089004","Screening","3","Date of Visit","34072730","0","23 Apr 2026 20:22:24:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 20:22:24.617","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","203840","PL100072021","6330","3111391","Screening","3","Date of Visit","34312783","0","29 Apr 2026 10:15:01:847","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 10:15:01.847","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","204806","PL100072022","6330","3131778","Screening","3","Date of Visit","34630512","0","14 May 2026 11:02:59:360","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 11:02:59.360","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","191226","PL100082001","6330","2842097","Screening","3","Date of Visit","30711643","0","13 Jan 2026 13:48:21:777","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260113 13:48:21.777","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","2879501","Screening","3","Date of Visit","31206605","0","21 Jan 2026 09:40:27:740","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 09:40:27.740","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","2939096","Week I-0 (1)","7","Date of Visit","32011046","0","17 Feb 2026 13:05:54:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 13:05:54.090","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","2941351","Week I-2 (1)","8","Date of Visit","32044212","0","03 Mar 2026 10:32:55:967","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 10:32:55.967","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","2941358","Week I-4 (1)","9","Date of Visit","32044294","0","20 Mar 2026 09:59:01:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 09:59:01.730","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","3021832","Week I-8 (1)","10","Date of Visit","33133955","0","29 Apr 2026 09:05:24:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 09:05:24.987","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","3067212","Week I-12 (1)","11","Date of Visit","33729693","0","22 May 2026 12:17:38:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:17:38.570","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","194026","PL100082003","6330","2903860","Screening","3","Date of Visit","31516217","0","05 May 2026 10:06:34:563","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 10:06:34.563","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","197064","PL100082004","6330","2966379","Screening","3","Date of Visit","32381435","0","17 Apr 2026 07:44:09:117","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 07:44:09.117","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","194330","PL100092001","6330","2910214","Screening","3","Date of Visit","31591275","0","24 Feb 2026 05:04:11:607","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 05:04:11.607","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","195047","PL100092002","6330","2925663","Screening","3","Date of Visit","31802769","0","24 Feb 2026 05:07:23:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 05:07:23.210","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","195047","PL100092002","6330","3028073","Week I-0 (1)","7","Date of Visit","33215314","0","07 Apr 2026 10:36:46:390","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 10:36:46.390","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","195047","PL100092002","6330","3051455","Week I-2 (1)","8","Date of Visit","33525334","0","07 Apr 2026 10:41:44:950","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 10:41:44.950","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","195047","PL100092002","6330","3051470","Week I-4 (1)","9","Date of Visit","33525505","0","07 May 2026 12:30:53:940","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 12:30:53.940","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","196429","PL100092003","6330","2953528","Screening","3","Date of Visit","32213033","0","07 May 2026 08:33:15:187","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 08:33:15.187","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","198383","PL100092004","6330","2996166","Screening","3","Date of Visit","32799930","0","07 Apr 2026 11:27:52:377","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 11:27:52.377","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","198383","PL100092004","6330","3050927","Week I-0 (1)","7","Date of Visit","33518028","0","07 Apr 2026 12:14:11:413","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 12:14:11.413","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","198383","PL100092004","6330","3051744","Week I-2 (1)","8","Date of Visit","33528685","0","07 May 2026 13:02:11:407","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 13:02:11.407","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","198383","PL100092004","6330","3137651","Week I-4 (1)","9","Date of Visit","34736748","0","07 May 2026 13:04:36:617","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 13:04:36.617","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","200701","PL100092005","6330","3042180","Screening","3","Date of Visit","33400530","0","08 Apr 2026 06:38:02:730","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 06:38:02.730","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","200701","PL100092005","6330","3129875","Week I-0 (1)","7","Date of Visit","34595497","0","07 May 2026 08:35:07:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 08:35:07.180","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","2865796","Screening","3","Date of Visit","31038367","0","11 Jan 2026 12:52:55:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260111 12:52:55.407","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","2940722","Week I-0 (1)","7","Date of Visit","32034984","0","19 Feb 2026 10:54:39:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 10:54:39.037","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","2946414","Week I-2 (1)","8","Date of Visit","32108755","0","08 Mar 2026 12:10:05:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260308 12:10:05.920","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","2989046","Week I-4 (1)","9","Date of Visit","32697893","0","18 Mar 2026 12:25:07:383","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 12:25:07.383","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","3016733","Week I-8 (1)","10","Date of Visit","33074844","0","14 Apr 2026 08:58:08:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 08:58:08.720","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","3064365","Week I-12 (1)","11","Date of Visit","33689393","0","15 May 2026 10:30:33:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 10:30:33.437","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192780","PL100102002","6330","2876976","Screening","3","Date of Visit","31175854","0","19 Mar 2026 12:47:01:617","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 12:47:01.617","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","2884896","Screening","3","Date of Visit","31273044","0","22 Jan 2026 12:21:39:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 12:21:39.100","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","2940818","Week I-0 (1)","7","Date of Visit","32036008","0","19 Feb 2026 13:28:56:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 13:28:56.710","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","2946809","Week I-2 (1)","8","Date of Visit","32115696","0","08 Mar 2026 12:18:43:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260308 12:18:43.527","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","2989058","Week I-4 (1)","9","Date of Visit","32697948","0","18 Mar 2026 12:44:22:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 12:44:22.127","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","3016816","Week I-8 (1)","10","Date of Visit","33075915","0","14 Apr 2026 09:01:58:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 09:01:58.210","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","3064397","Week I-12 (1)","11","Date of Visit","33689732","0","15 May 2026 15:17:13:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 15:17:13.310","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","2910917","Screening","3","Date of Visit","31597580","0","06 Feb 2026 10:22:23:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 10:22:23.530","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","3006252","Week I-0 (1)","7","Date of Visit","32936048","0","18 Mar 2026 12:53:04:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 12:53:04.227","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","3016839","Week I-2 (1)","8","Date of Visit","33076252","0","26 Mar 2026 12:10:15:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 12:10:15.937","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","3035785","Week I-4 (1)","9","Date of Visit","33316416","0","08 Apr 2026 09:24:23:633","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 09:24:23.633","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","3053664","Week I-8 (1)","10","Date of Visit","33556946","0","09 May 2026 19:47:55:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260509 19:47:55.047","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","2914483","Screening","3","Date of Visit","31645441","0","06 Feb 2026 10:39:30:810","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 10:39:30.810","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","3006414","Week I-0 (1)","7","Date of Visit","32938482","0","18 Mar 2026 13:55:47:533","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 13:55:47.533","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","3017067","Week I-2 (1)","8","Date of Visit","33079211","0","27 Mar 2026 10:29:37:863","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 10:29:37.863","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","3037960","Week I-4 (1)","9","Date of Visit","33348278","0","10 Apr 2026 10:15:54:843","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 10:15:54.843","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","3059652","Week I-8 (1)","10","Date of Visit","33628093","0","09 May 2026 19:49:32:857","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260509 19:49:32.857","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194922","PL100102006","6330","2923110","Screening","3","Date of Visit","31766136","0","20 Mar 2026 13:26:04:680","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 13:26:04.680","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","197099","PL100102007","6330","2967029","Screening","3","Date of Visit","32388689","0","22 May 2026 12:27:52:767","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:27:52.767","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","197099","PL100102007","6330","3052829","Week I-0 (1)","7","Date of Visit","33544738","0","09 Apr 2026 08:36:55:310","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 08:36:55.310","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","197099","PL100102007","6330","3056693","Week I-2 (1)","8","Date of Visit","33593540","0","22 Apr 2026 10:28:08:657","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 10:28:08.657","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","197099","PL100102007","6330","3083924","Week I-4 (1)","9","Date of Visit","33988305","0","09 May 2026 19:50:24:403","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260509 19:50:24.403","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","199014","PL100102008","6330","3009071","Screening","3","Date of Visit","32971740","0","18 Mar 2026 14:22:18:217","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 14:22:18.217","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","199014","PL100102008","6330","3064420","Week I-0 (1)","7","Date of Visit","33690136","0","17 Apr 2026 08:15:45:030","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 08:15:45.030","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","199014","PL100102008","6330","3073311","Week I-2 (1)","8","Date of Visit","33831637","0","30 Apr 2026 07:10:32:200","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:10:32.200","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","199014","PL100102008","6330","3120022","Week I-4 (1)","9","Date of Visit","34461353","0","13 May 2026 13:18:55:083","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 13:18:55.083","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193049","PL100122001","6330","2883048","Screening","3","Date of Visit","31248858","0","11 Feb 2026 11:11:26:790","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 11:11:26.790","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","2883076","Screening","3","Date of Visit","31249153","0","20 Jan 2026 10:33:46:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 10:33:46.230","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","2939233","Week I-0 (1)","7","Date of Visit","32012964","0","18 Feb 2026 08:37:46:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260218 08:37:46.547","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","2943655","Week I-2 (1)","8","Date of Visit","32072834","0","04 Mar 2026 12:34:34:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 12:34:34.393","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","2976902","Week I-4 (1)","9","Date of Visit","32528624","0","17 Mar 2026 11:26:58:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 11:26:58.447","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","3013367","Week I-8 (1)","10","Date of Visit","33030208","0","17 Apr 2026 08:15:09:843","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 08:15:09.843","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","3073310","Week I-12 (1)","11","Date of Visit","33831609","0","14 May 2026 12:27:51:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 12:27:51.787","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","2916447","Screening","3","Date of Visit","31671176","0","13 Apr 2026 07:30:35:727","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 07:30:35.727","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","2989904","Week I-0 (1)","7","Date of Visit","32709768","0","12 Mar 2026 11:42:22:793","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 11:42:22.793","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","3004039","Week I-2 (1)","8","Date of Visit","32904110","0","26 Mar 2026 09:07:02:407","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 09:07:02.407","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","3035101","Week I-4 (1)","9","Date of Visit","33307871","0","07 Apr 2026 10:39:54:910","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 10:39:54.910","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","3051466","Week I-8 (1)","10","Date of Visit","33525437","0","05 May 2026 10:01:00:310","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 10:01:00.310","","" +"POL","9894","DD5-PL10012","ETG Zamosc","199767","PL100122004","6330","3024868","Screening","3","Date of Visit","33173023","0","28 Apr 2026 08:18:36:727","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 08:18:36.727","","" +"POL","9894","DD5-PL10012","ETG Zamosc","200415","PL100122005","6330","3037539","Screening","3","Date of Visit","33342393","0","08 Apr 2026 09:15:11:450","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 09:15:11.450","","" +"POL","9894","DD5-PL10012","ETG Zamosc","200415","PL100122005","6330","3120071","Week I-0 (1)","7","Date of Visit","34462034","0","08 May 2026 10:01:11:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 10:01:11.307","","" +"POL","9894","DD5-PL10012","ETG Zamosc","200415","PL100122005","6330","3167484","Week I-2 (1)","8","Date of Visit","34820807","0","15 May 2026 11:17:48:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 11:17:48.550","","" +"POL","9894","DD5-PL10012","ETG Zamosc","205012","PL100122006","6330","3136138","Screening","3","Date of Visit","34711077","0","07 May 2026 08:03:18:140","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 08:03:18.140","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","2866295","Screening","3","Date of Visit","31044293","0","21 Jan 2026 08:33:40:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 08:33:40.890","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","2933071","Week I-0 (1)","7","Date of Visit","31915264","0","13 Feb 2026 13:33:06:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 13:33:06.010","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","2937217","Week I-2 (1)","8","Date of Visit","31983577","0","24 Feb 2026 13:59:25:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 13:59:25.557","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","2955292","Week I-4 (1)","9","Date of Visit","32244445","0","13 Mar 2026 07:50:31:943","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 07:50:31.943","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","3005938","Week I-8 (1)","10","Date of Visit","32931092","0","20 Apr 2026 09:54:14:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 09:54:14.230","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","3077233","Week I-12 (1)","11","Date of Visit","33886952","0","07 May 2026 12:02:11:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 12:02:11.593","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","2866345","Screening","3","Date of Visit","31044937","0","22 Jan 2026 08:32:10:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 08:32:10.053","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","2941443","Week I-0 (1)","7","Date of Visit","32045139","0","24 Feb 2026 12:33:29:060","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 12:33:29.060","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","2954999","Week I-2 (1)","8","Date of Visit","32239604","0","05 Mar 2026 07:44:29:070","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 07:44:29.070","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","2978403","Week I-4 (1)","9","Date of Visit","32547160","0","24 Mar 2026 14:45:36:753","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 14:45:36.753","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","3029951","Week I-8 (1)","10","Date of Visit","33237885","0","10 Apr 2026 07:15:08:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 07:15:08.920","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192416","PL100132003","6330","2868839","Screening","3","Date of Visit","31076197","0","21 Jan 2026 08:39:26:537","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260121 08:39:26.537","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192693","PL100132004","6330","2874888","Screening","3","Date of Visit","31149479","0","11 Feb 2026 11:58:30:447","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 11:58:30.447","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192693","PL100132004","6330","2949300","Unscheduled 20260209","59","Date of Visit","32148431","0","20 Feb 2026 14:05:32:447","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","09 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","STOOL CULTURE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260220 14:05:32.447","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192716","PL100132005","6330","2875565","Screening","3","Date of Visit","31157494","0","11 Feb 2026 12:00:36:580","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 12:00:36.580","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","2878035","Screening","3","Date of Visit","31187618","0","12 Mar 2026 11:06:27:990","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 11:06:27.990","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","2957818","Week I-0 (1)","7","Date of Visit","32284923","0","12 Mar 2026 11:06:28:033","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 11:06:28.033","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","2968700","Week I-2 (1)","8","Date of Visit","32413553","0","17 Mar 2026 08:00:59:150","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 08:00:59.150","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","3011852","Week I-4 (1)","9","Date of Visit","33009351","0","30 Mar 2026 08:09:13:877","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 08:09:13.877","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","3039831","Week I-8 (1)","10","Date of Visit","33371918","0","29 Apr 2026 12:07:04:890","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 12:07:04.890","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","2900921","Screening","3","Date of Visit","31475490","0","03 Feb 2026 14:06:46:370","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 14:06:46.370","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","2994651","Week I-0 (1)","7","Date of Visit","32778397","0","11 Mar 2026 16:04:58:840","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 16:04:58.840","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","3002014","Week I-2 (1)","8","Date of Visit","32877668","0","26 Mar 2026 08:06:19:827","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 08:06:19.827","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","3034851","Week I-4 (1)","9","Date of Visit","33304527","0","10 Apr 2026 10:28:51:347","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 10:28:51.347","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","3059690","Week I-8 (1)","10","Date of Visit","33628493","0","14 May 2026 07:14:49:820","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 07:14:49.820","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","195424","PL100132008","6330","2933231","Screening","3","Date of Visit","31917797","0","16 Feb 2026 13:45:05:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 13:45:05.597","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","195424","PL100132008","6330","3032964","Week I-0 (1)","7","Date of Visit","33278743","0","30 Mar 2026 11:47:25:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 11:47:25.813","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","195424","PL100132008","6330","3040572","Week I-2 (1)","8","Date of Visit","33380556","0","10 Apr 2026 11:23:17:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 11:23:17.730","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","195424","PL100132008","6330","3059830","Week I-4 (1)","9","Date of Visit","33629949","0","29 Apr 2026 12:21:55:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 12:21:55.870","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","196332","PL100132009","6330","2951620","Screening","3","Date of Visit","32181852","0","13 Mar 2026 08:45:29:070","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 08:45:29.070","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","198671","PL100132010","6330","3001449","Screening","3","Date of Visit","32869750","0","07 Apr 2026 09:11:35:810","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 09:11:35.810","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","200167","PL100132011","6330","3032843","Screening","3","Date of Visit","33277326","0","01 Apr 2026 12:37:37:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 12:37:37.407","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","200167","PL100132011","6330","3130137","Week I-0 (1)","7","Date of Visit","34598646","0","11 May 2026 08:58:02:807","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 08:58:02.807","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","200167","PL100132011","6330","3181969","Week I-2 (1)","8","Date of Visit","34890202","0","25 May 2026 06:23:42:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 06:23:42.870","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","201926","PL100132012","6330","3067746","Screening","3","Date of Visit","33742303","0","20 Apr 2026 06:40:14:517","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 06:40:14.517","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","201926","PL100132012","6330","3134583","Week I-0 (1)","7","Date of Visit","34681919","0","11 May 2026 09:05:09:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 09:05:09.787","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","201926","PL100132012","6330","3181986","Week I-2 (1)","8","Date of Visit","34890371","0","25 May 2026 06:49:52:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 06:49:52.207","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","203881","PL100132013","6330","3112180","Screening","3","Date of Visit","34322695","0","29 Apr 2026 12:30:38:567","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 12:30:38.567","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","211211","PL100132014","6330","3201454","Screening","3","Date of Visit","35164004","0","21 May 2026 14:19:10:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 14:19:10.553","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191557","PL100142001","6330","2849152","Screening","3","Date of Visit","30810713","0","19 Jan 2026 07:42:25:703","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 07:42:25.703","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191557","PL100142001","6330","2858142","Unscheduled 20251229","59","Date of Visit","30943296","0","30 Dec 2025 08:44:00:020","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","29 DEC 2025","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT: THE INVESTIGATOR CALLED TO INFORM THE PATIENT THAT THE PATIENT HAS A CAMPYLOBACTER JEJUNI INFECTION AND RECOMMENDED ANTIBIOTIC TREATMENT.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251230 08:44:00.020","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191857","PL100142002","6330","2856940","Screening","3","Date of Visit","30927258","0","19 Jan 2026 07:41:43:437","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260119 07:41:43.437","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2900224","Screening","3","Date of Visit","31467747","0","03 Feb 2026 13:36:45:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 13:36:45.417","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2956913","Week I-0 (1)","7","Date of Visit","32269405","0","03 Mar 2026 09:16:33:957","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 09:16:33.957","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2969605","Week I-2 (1)","8","Date of Visit","32428899","0","12 Mar 2026 13:22:19:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 13:22:19.210","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","3004376","Week I-4 (1)","9","Date of Visit","32910513","0","26 Mar 2026 07:41:20:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 07:41:20.727","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","3034773","Week I-8 (1)","10","Date of Visit","33303709","0","22 Apr 2026 07:27:24:993","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 07:27:24.993","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2910851","Unscheduled 20260130","59","Date of Visit","31596876","0","03 Feb 2026 13:36:45:433","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","30 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","TELEPHONE CONTACT OF THE INVESTIGATOR WITH THE PATIENT. THE PATIENT WAS INFORMED ABOUT AN INCONCLUSIVE RESULT REGARDING THE PRESENCE OF THE HBV VIRUS, AND A REPEAT HBV DNA TEST HAS BEEN SCHEDULED.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 13:36:45.433","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2912499","Unscheduled 20260203","59","Date of Visit","31624418","0","03 Feb 2026 13:54:01:783","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","03 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED VISIT TO THE STUDY SITE FOR HBV DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 13:54:01.783","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2946637","Unscheduled 20260218","59","Date of Visit","32112001","0","19 Feb 2026 12:27:54:430","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","18 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE INVESTIGATOR CALLED THE PATIENT TO CLARIFY MISSING DATA IN THE CLARIO DIARY.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 12:27:54.430","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","3057375","Unscheduled 20260409","59","Date of Visit","33601163","0","09 Apr 2026 11:56:25:220","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE STUDY COORDINATOR CONTACTED THE PARTICIPANT TO REQUEST THE COMPLETION OF PENDING QUESTIONNAIRES AFTER THE CLARIO EDIARY TECHNICAL FAILURE WAS RESOLVED","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 11:56:25.220","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193963","PL100142004","6330","2902399","Screening","3","Date of Visit","31492412","0","03 Mar 2026 07:34:10:683","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 07:34:10.683","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","2923222","Screening","3","Date of Visit","31767599","0","16 Feb 2026 13:27:16:733","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 13:27:16.733","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","2976346","Week I-0 (1)","7","Date of Visit","32522190","0","06 Mar 2026 08:59:07:203","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 08:59:07.203","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","2981475","Week I-2 (1)","8","Date of Visit","32586773","0","20 Mar 2026 08:14:51:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 08:14:51.790","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","3021319","Week I-4 (1)","9","Date of Visit","33129756","0","01 Apr 2026 08:14:17:487","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 08:14:17.487","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","3044595","Week I-8 (1)","10","Date of Visit","33436089","0","28 Apr 2026 11:35:28:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:35:28.237","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","2977224","Unscheduled 20260227","59","Date of Visit","32532302","0","04 Mar 2026 14:29:02:830","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT DUE TO MISSING ENTRIES IN THE CLARIO E-DIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 14:29:02.830","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","3057402","Unscheduled 20260409","59","Date of Visit","33601502","0","09 Apr 2026 12:05:08:757","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 12:05:08.757","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","3062018","Unscheduled 20260319","59","Date of Visit","33656972","0","13 Apr 2026 11:31:55:573","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTION AT VISIT 3","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 11:31:55.573","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","2923537","Screening","3","Date of Visit","31773086","0","16 Feb 2026 13:21:52:260","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 13:21:52.260","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3000180","Week I-0 (1)","7","Date of Visit","32851672","0","12 Mar 2026 09:00:00:307","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 09:00:00.307","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3003493","Week I-2 (1)","8","Date of Visit","32896276","0","26 Mar 2026 13:12:06:900","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 13:12:06.900","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3035955","Week I-4 (1)","9","Date of Visit","33318744","0","08 Apr 2026 11:16:21:023","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 11:16:21.023","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3054165","Week I-8 (1)","10","Date of Visit","33562569","0","11 May 2026 12:03:30:427","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 12:03:30.427","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","2977216","Unscheduled 20260302","59","Date of Visit","32532238","0","04 Mar 2026 14:25:17:847","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","02 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT DUE TO MISSING ENTRIES IN THE CLARIO E-DIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 14:25:17.847","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3057416","Unscheduled 20260409","59","Date of Visit","33601650","0","09 Apr 2026 12:08:17:880","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 12:08:17.880","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","2923601","Screening","3","Date of Visit","31773457","0","16 Feb 2026 13:33:20:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 13:33:20.157","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3000951","Week I-0 (1)","7","Date of Visit","32864058","0","12 Mar 2026 09:23:00:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 09:23:00.683","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3003620","Week I-2 (1)","8","Date of Visit","32897650","0","26 Mar 2026 07:27:34:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 07:27:34.613","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3034743","Week I-4 (1)","9","Date of Visit","33303018","0","08 Apr 2026 13:37:35:630","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 13:37:35.630","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3054928","Week I-8 (1)","10","Date of Visit","33570922","0","11 May 2026 12:07:59:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 12:07:59.407","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","2977190","Unscheduled 20260302","59","Date of Visit","32531916","0","04 Mar 2026 14:21:09:223","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","02 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT DUE TO SPORADIC MISSING ENTRIES IN THE CLARIO E-DIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 14:21:09.223","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3057428","Unscheduled 20260409","59","Date of Visit","33601713","0","09 Apr 2026 12:13:21:537","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 12:13:21.537","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3062058","Unscheduled 20260325","59","Date of Visit","33657499","0","13 Apr 2026 11:44:40:460","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","25 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTION AT V3","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 11:44:40.460","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","196096","PL100142008","6330","2946602","Screening","3","Date of Visit","32111268","0","26 Mar 2026 13:01:13:693","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 13:01:13.693","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2967493","Screening","3","Date of Visit","32397753","0","16 Mar 2026 09:07:49:053","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 09:07:49.053","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3032554","Week I-0 (1)","7","Date of Visit","33274584","0","26 Mar 2026 10:35:30:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 10:35:30.830","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3035392","Week I-2 (1)","8","Date of Visit","33311451","0","09 Apr 2026 10:27:21:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 10:27:21.367","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3057131","Week I-4 (1)","9","Date of Visit","33598506","0","22 Apr 2026 12:35:26:423","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 12:35:26.423","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3084716","Week I-8 (1)","10","Date of Visit","33998982","0","19 May 2026 07:12:44:057","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 07:12:44.057","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2998005","Unscheduled 20260305","59","Date of Visit","32824033","0","16 Mar 2026 09:07:49:073","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","05 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED PHONE CALL PERFORMED TO SCHEDULE THE SUBJECT FOR AN ADDITIONAL HBV DNA RE-TEST AT THE SITE.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 09:07:49.073","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2998014","Unscheduled 20260306","59","Date of Visit","32824259","0","16 Mar 2026 09:07:49:087","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","06 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED VISIT: HBV DNA BLOOD DRAW PERFORMED.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 09:07:49.087","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2998024","Unscheduled 20260309","59","Date of Visit","32824367","0","16 Mar 2026 09:07:49:100","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE CONTACT. THE INVESTIGATOR CALLED THE SUBJECT TO REQUEST AN ON-SITE VISIT FOR A QUANTIFERON-TB GOLD RE-TEST.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 09:07:49.100","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2998036","Unscheduled 20260309","59","Date of Visit","32824721","0","16 Mar 2026 09:07:49:113","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","THE SUBJECT ATTENDED THE SITE FOR A QUANTIFERON-TB GOLD RE-TEST.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 09:07:49.113","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3021336","Unscheduled 20260319","59","Date of Visit","33130087","0","20 Mar 2026 08:28:47:500","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE INVESTIGATOR CONTACTED THE SUBJECT TO FOLLOW UP ON THE MISSING UC-PRO QUESTIONNAIRE ENTRIES","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 08:28:47.500","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3057304","Unscheduled 20260408","59","Date of Visit","33600372","0","09 Apr 2026 11:29:06:233","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","08 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED PHONE CALL INITIATED BY THE SUBJECT REGARDING TECHNICAL DIFFICULTIES WITH THE CLARIO DEVICE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 11:29:06.233","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3197036","Unscheduled 20260515","59","Date of Visit","35100760","0","15 May 2026 14:59:10:287","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","15 MAY 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED PHONE VISIT. REVIEW OF THE PATIENT'S RESPIRATORY HEALTH STATUS.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 14:59:10.287","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","2974575","Screening","3","Date of Visit","32499407","0","16 Mar 2026 09:18:41:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 09:18:41.710","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","3044309","Week I-0 (1)","7","Date of Visit","33431292","0","01 Apr 2026 09:20:21:387","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 09:20:21.387","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","3044725","Week I-2 (1)","8","Date of Visit","33438197","0","15 Apr 2026 10:43:25:773","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 10:43:25.773","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","3067163","Week I-4 (1)","9","Date of Visit","33728231","0","28 Apr 2026 11:26:33:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:26:33.507","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","3057344","Unscheduled 20260409","59","Date of Visit","33600720","0","09 Apr 2026 11:37:32:873","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED PHONE CALL INITIATED BY THE SUBJECT REGARDING TECHNICAL DIFFICULTIES WITH THE CLARIO DEVICE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 11:37:32.873","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3043181","Screening","3","Date of Visit","33411145","0","10 Apr 2026 08:50:05:640","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 08:50:05.640","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3090271","Week I-0 (1)","7","Date of Visit","34091603","0","28 Apr 2026 11:04:51:080","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:04:51.080","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3114783","Week I-2 (1)","8","Date of Visit","34363804","0","11 May 2026 12:21:21:610","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 12:21:21.610","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3185463","Week I-4 (1)","9","Date of Visit","34929997","0","22 May 2026 12:50:52:047","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:50:52.047","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3057361","Unscheduled 20260409","59","Date of Visit","33600992","0","10 Apr 2026 08:50:05:660","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 08:50:05.660","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200820","PL100142012","6330","3044885","Screening","3","Date of Visit","33440531","0","08 Apr 2026 13:20:54:533","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 13:20:54.533","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200820","PL100142012","6330","3117368","Week I-0 (1)","7","Date of Visit","34404365","0","30 Apr 2026 08:18:22:327","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 08:18:22.327","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200820","PL100142012","6330","3120198","Week I-2 (1)","8","Date of Visit","34463680","0","14 May 2026 06:24:26:900","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 06:24:26.900","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200820","PL100142012","6330","3057368","Unscheduled 20260409","59","Date of Visit","33601091","0","09 Apr 2026 11:50:02:950","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 11:50:02.950","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","202611","PL100142013","6330","3081401","Screening","3","Date of Visit","33954902","0","30 Apr 2026 11:55:51:943","Tier 5","SDVTier","Yes","Did this visit occur?","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 11:55:51.943","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","203906","PL100142014","6330","3112602","Screening","3","Date of Visit","34328860","0","30 Apr 2026 08:06:00:547","Tier 1","SDVTier","Yes","Did this visit occur?","","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 08:06:00.547","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","204045","PL100142015","6330","3114920","Screening","3","Date of Visit","34365456","0","30 Apr 2026 07:53:07:887","Tier 5","SDVTier","Yes","Did this visit occur?","","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:53:07.887","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","2929866","Screening","3","Date of Visit","31863009","0","10 Mar 2026 17:40:20:167","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 17:40:20.167","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3030201","Week I-0 (1)","7","Date of Visit","33241904","0","26 Mar 2026 13:14:17:030","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 13:14:17.030","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3035960","Week I-2 (1)","8","Date of Visit","33319098","0","10 Apr 2026 09:58:05:363","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 09:58:05.363","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3059585","Week I-4 (1)","9","Date of Visit","33627533","0","23 Apr 2026 14:00:29:423","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 14:00:29.423","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3089197","Week I-8 (1)","10","Date of Visit","34077093","0","20 May 2026 08:29:42:903","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","SUBJECT WITHDRAWAL","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 08:29:42.903","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3203042","Induction Early Discontinuation (1)","12","Date of Visit","35185442","0","21 May 2026 11:08:35:400","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT REFUSED","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 11:08:35.400","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","2998397","Screening","3","Date of Visit","32830577","0","10 Mar 2026 17:42:14:957","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 17:42:14.957","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","3052137","Week I-0 (1)","7","Date of Visit","33534015","0","10 Apr 2026 12:27:29:197","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 12:27:29.197","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","3059971","Week I-2 (1)","8","Date of Visit","33631721","0","13 May 2026 09:21:48:703","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT WITHDRAWN FROM THE STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 09:21:48.703","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","3191023","Induction Early Discontinuation (1)","12","Date of Visit","35010271","0","13 May 2026 09:22:33:077","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","THE PATIENT REFUSED TO COME TO THE APPOINTMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 09:22:33.077","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198508","PL100152003","6330","2998469","Screening","3","Date of Visit","32831186","0","10 Apr 2026 12:03:45:233","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 12:03:45.233","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","199264","PL100152004","6330","3014416","Screening","3","Date of Visit","33044250","0","30 Apr 2026 10:38:38:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 10:38:38.677","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","199264","PL100152004","6330","3115894","Week I-0 (1)","7","Date of Visit","34382977","0","30 Apr 2026 11:36:32:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 11:36:32.857","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","199264","PL100152004","6330","3124621","Week I-2 (1)","8","Date of Visit","34511777","0","15 May 2026 10:35:12:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 10:35:12.127","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","200751","PL100152005","6330","3043409","Screening","3","Date of Visit","33414098","0","30 Apr 2026 12:11:01:043","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 12:11:01.043","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","200751","PL100152005","6330","3115914","Week I-0 (1)","7","Date of Visit","34383373","0","30 Apr 2026 12:25:10:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 12:25:10.030","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","200751","PL100152005","6330","3124748","Week I-2 (1)","8","Date of Visit","34513534","0","15 May 2026 10:08:32:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 10:08:32.647","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","201178","PL100152006","6330","3052152","Screening","3","Date of Visit","33534148","0","07 May 2026 06:25:03:693","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 06:25:03.693","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","201178","PL100152006","6330","3132118","Week I-0 (1)","7","Date of Visit","34635207","0","07 May 2026 07:00:41:143","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 07:00:41.143","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","201178","PL100152006","6330","3135942","Week I-2 (1)","8","Date of Visit","34708082","0","20 May 2026 10:08:47:357","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 10:08:47.357","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","202786","PL100152007","6330","3085454","Screening","3","Date of Visit","34015337","0","20 May 2026 08:34:32:170","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 08:34:32.170","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","190715","PL100162001","6330","2832042","Screening","3","Date of Visit","30584747","0","16 Jan 2026 12:33:02:743","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260116 12:33:02.743","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2848013","Screening","3","Date of Visit","30791962","0","09 Jan 2026 11:21:19:003","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 11:21:19.003","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2872522","Week I-0 (1)","7","Date of Visit","31118978","0","12 Jan 2026 13:04:55:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260112 13:04:55.647","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2872869","Week I-2 (1)","8","Date of Visit","31123948","0","30 Jan 2026 07:09:17:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260130 07:09:17.053","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2905739","Week I-4 (1)","9","Date of Visit","31534720","0","04 Feb 2026 11:41:37:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 11:41:37.803","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2914537","Week I-8 (1)","10","Date of Visit","31646250","0","04 Mar 2026 11:56:55:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 11:56:55.960","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2976739","Week I-12 (1)","11","Date of Visit","32527262","0","09 Apr 2026 09:04:43:833","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 09:04:43.833","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","3046742","Week M-4 (1)","15","Date of Visit","33467801","0","05 May 2026 11:18:04:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 11:18:04.593","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192592","PL100162003","6330","2872548","Screening","3","Date of Visit","31119254","0","24 Feb 2026 12:21:27:767","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 12:21:27.767","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2872629","Screening","3","Date of Visit","31120350","0","12 Feb 2026 10:46:43:013","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 10:46:43.013","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2898001","Week I-0 (1)","7","Date of Visit","31439192","0","28 Jan 2026 10:46:08:183","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 10:46:08.183","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2900347","Week I-2 (1)","8","Date of Visit","31469420","0","11 Feb 2026 08:54:54:993","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 08:54:54.993","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2928798","Week I-4 (1)","9","Date of Visit","31847049","0","24 Feb 2026 09:18:49:563","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 09:18:49.563","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2953392","Week I-8 (1)","10","Date of Visit","32210320","0","24 Mar 2026 12:46:24:377","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 12:46:24.377","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","3029613","Week I-12 (1)","11","Date of Visit","33233571","0","24 Apr 2026 10:58:58:363","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 10:58:58.363","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","3077132","Week M-4 (1)","15","Date of Visit","33885549","0","20 May 2026 10:46:28:873","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 10:46:28.873","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","2876862","Screening","3","Date of Visit","31174143","0","12 Feb 2026 11:01:16:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 11:01:16.537","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","2940669","Week I-0 (1)","7","Date of Visit","32034259","0","17 Feb 2026 12:30:54:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 12:30:54.177","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","2941293","Week I-2 (1)","8","Date of Visit","32043351","0","03 Mar 2026 12:41:36:590","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 12:41:36.590","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","2974447","Week I-4 (1)","9","Date of Visit","32497621","0","17 Mar 2026 12:02:25:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 12:02:25.660","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","3013570","Week I-8 (1)","10","Date of Visit","33032374","0","14 Apr 2026 09:35:28:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 09:35:28.303","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","3064522","Week I-12 (1)","11","Date of Visit","33691523","0","12 May 2026 12:45:52:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 12:45:52.880","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","193860","PL100162006","6330","2899884","Screening","3","Date of Visit","31464370","0","17 Feb 2026 12:28:15:477","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 12:28:15.477","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","193870","PL100162007","6330","2900070","Screening","3","Date of Visit","31466160","0","05 Feb 2026 11:54:56:233","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 11:54:56.233","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","2908407","Screening","3","Date of Visit","31569371","0","15 Apr 2026 15:09:58:173","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 15:09:58.173","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","2976146","Week I-0 (1)","7","Date of Visit","32518951","0","08 Mar 2026 08:21:38:030","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260308 08:21:38.030","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","2989007","Week I-2 (1)","8","Date of Visit","32697330","0","16 Mar 2026 11:21:59:897","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 11:21:59.897","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","3009772","Week I-4 (1)","9","Date of Visit","32982032","0","01 Apr 2026 08:35:42:780","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 08:35:42.780","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","3044633","Week I-8 (1)","10","Date of Visit","33436677","0","04 May 2026 12:10:41:957","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 12:10:41.957","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","3127287","Week I-12 (1)","11","Date of Visit","34557345","0","21 May 2026 09:12:10:330","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 09:12:10.330","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","2910474","Screening","3","Date of Visit","31594050","0","12 Feb 2026 11:04:00:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 11:04:00.617","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","3009198","Week I-0 (1)","7","Date of Visit","32973944","0","17 Mar 2026 14:17:55:990","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 14:17:55.990","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","3013981","Week I-2 (1)","8","Date of Visit","33039552","0","30 Mar 2026 09:58:27:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 09:58:27.770","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","3040188","Week I-4 (1)","9","Date of Visit","33376515","0","13 Apr 2026 08:52:18:193","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 08:52:18.193","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","3061611","Week I-8 (1)","10","Date of Visit","33652079","0","11 May 2026 09:50:24:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 09:50:24.737","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","2910624","Screening","3","Date of Visit","31594834","0","15 Apr 2026 15:09:57:893","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 15:09:57.893","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","3009074","Week I-0 (1)","7","Date of Visit","32971816","0","17 Mar 2026 14:51:29:293","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 14:51:29.293","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","3014112","Week I-2 (1)","8","Date of Visit","33040669","0","30 Mar 2026 10:05:05:753","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 10:05:05.753","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","3040231","Week I-4 (1)","9","Date of Visit","33377213","0","13 Apr 2026 09:29:20:057","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 09:29:20.057","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","3061731","Week I-8 (1)","10","Date of Visit","33653543","0","11 May 2026 09:51:05:193","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 09:51:05.193","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195193","PL100162011","6330","2929008","Screening","3","Date of Visit","31850265","0","23 Feb 2026 15:10:47:417","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 15:10:47.417","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","2929038","Screening","3","Date of Visit","31850632","0","20 Mar 2026 11:21:33:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 11:21:33.723","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","3016183","Week I-0 (1)","7","Date of Visit","33067661","0","20 Mar 2026 11:36:03:173","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 11:36:03.173","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","3022203","Week I-2 (1)","8","Date of Visit","33137868","0","14 Apr 2026 09:24:05:353","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 09:24:05.353","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","3064492","Week I-4 (1)","9","Date of Visit","33691116","0","14 Apr 2026 09:24:24:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 09:24:24.030","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","3064501","Week I-8 (1)","10","Date of Visit","33691172","0","13 May 2026 08:51:20:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 08:51:20.823","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","2969614","Screening","3","Date of Visit","32428943","0","13 Mar 2026 11:02:40:863","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 11:02:40.863","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","3000179","Week I-0 (1)","7","Date of Visit","32851658","0","11 Mar 2026 13:06:20:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 13:06:20.627","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","3001251","Week I-2 (1)","8","Date of Visit","32867398","0","25 Mar 2026 11:03:03:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 11:03:03.397","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","3032250","Week I-4 (1)","9","Date of Visit","33271007","0","07 Apr 2026 10:41:57:793","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 10:41:57.793","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","3051471","Week I-8 (1)","10","Date of Visit","33525531","0","05 May 2026 10:14:39:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 10:14:39.700","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","2892382","Screening","3","Date of Visit","31363423","0","27 Jan 2026 13:13:42:710","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260127 13:13:42.710","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","2969437","Week I-0 (1)","7","Date of Visit","32425218","0","20 Mar 2026 10:08:09:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 10:08:09.697","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","3021869","Week I-2 (1)","8","Date of Visit","33134818","0","23 Mar 2026 09:58:16:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 09:58:16.120","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","3025260","Week I-4 (1)","9","Date of Visit","33178276","0","31 Mar 2026 12:36:22:390","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 12:36:22.390","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","3043150","Week I-8 (1)","10","Date of Visit","33410622","0","22 May 2026 11:28:21:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 11:28:21.280","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","3080084","Unscheduled 20260122","59","Date of Visit","33932414","0","21 Apr 2026 10:35:43:263","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 10:35:43.263","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","2898262","Screening","3","Date of Visit","31442668","0","27 Jan 2026 13:07:13:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260127 13:07:13.047","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","3003924","Week I-0 (1)","7","Date of Visit","32902760","0","23 Mar 2026 12:33:11:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 12:33:11.760","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","3026040","Week I-2 (1)","8","Date of Visit","33188974","0","23 Mar 2026 12:37:56:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 12:37:56.007","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","3026056","Week I-4 (1)","9","Date of Visit","33189197","0","10 Apr 2026 07:16:51:867","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 07:16:51.867","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","3059038","Week I-8 (1)","10","Date of Visit","33622306","0","22 May 2026 12:19:22:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:19:22.940","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","2906091","Screening","3","Date of Visit","31538322","0","24 Mar 2026 13:31:08:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 13:31:08.553","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","2996562","Week I-0 (1)","7","Date of Visit","32806805","0","24 Mar 2026 13:31:08:577","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 13:31:08.577","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","3006647","Week I-2 (1)","8","Date of Visit","32942137","0","24 Mar 2026 13:31:08:590","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 13:31:08.590","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","3029532","Week I-4 (1)","9","Date of Visit","33232640","0","07 Apr 2026 11:12:52:223","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 11:12:52.223","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","3051572","Week I-8 (1)","10","Date of Visit","33526660","0","22 May 2026 12:33:28:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:33:28.497","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","3209787","Unscheduled 20260407","59","Date of Visit","35271994","0","22 May 2026 12:41:00:393","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","07 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:41:00.393","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","2935537","Screening","3","Date of Visit","31953839","0","29 Mar 2026 09:49:09:020","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260329 09:49:09.020","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","2990317","Week I-0 (1)","7","Date of Visit","32714362","0","29 Mar 2026 09:49:09:037","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260329 09:49:09.037","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","3029673","Week I-2 (1)","8","Date of Visit","33234078","0","29 Mar 2026 09:49:09:047","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260329 09:49:09.047","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","3029687","Week I-4 (1)","9","Date of Visit","33234333","0","07 Apr 2026 11:04:21:997","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 11:04:21.997","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","3051550","Week I-8 (1)","10","Date of Visit","33526431","0","22 May 2026 12:44:34:063","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 12:44:34.063","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","202948","PL100172005","6330","3089155","Screening","3","Date of Visit","34076347","0","23 Apr 2026 13:36:34:647","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 13:36:34.647","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","192870","PL100192001","6330","2879041","Screening","3","Date of Visit","31200700","0","05 Mar 2026 13:37:31:750","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 13:37:31.750","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","193115","PL100192002","6330","2884227","Screening","3","Date of Visit","31263710","0","05 Mar 2026 13:35:58:257","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 13:35:58.257","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","194516","PL100192003","6330","2914272","Screening","3","Date of Visit","31643379","0","02 Mar 2026 10:52:05:897","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 10:52:05.897","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","2929091","Screening","3","Date of Visit","31851538","0","12 Feb 2026 09:03:39:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 09:03:39.077","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","2996755","Week I-0 (1)","7","Date of Visit","32808900","0","16 Mar 2026 08:38:35:580","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 08:38:35.580","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","3009084","Week I-2 (1)","8","Date of Visit","32971913","0","13 May 2026 07:02:33:707","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 07:02:33.707","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","3037823","Week I-4 (1)","9","Date of Visit","33346562","0","17 Apr 2026 11:15:36:617","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 11:15:36.617","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","3073999","Week I-8 (1)","10","Date of Visit","33841795","0","08 May 2026 11:00:38:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 11:00:38.533","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195310","PL100192005","6330","2931176","Screening","3","Date of Visit","31885577","0","17 Mar 2026 16:00:34:340","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 16:00:34.340","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","202550","PL100192006","6330","3080170","Screening","3","Date of Visit","33933149","0","13 May 2026 06:43:50:143","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 06:43:50.143","","" +"POL","9909","DD5-PL10020","Uniwersyteckie Centrum Stomatologii i Medycyny Specjalistycznej Sp z o o","202563","PL100202001","6330","3080439","Screening","3","Date of Visit","33935366","0","29 Apr 2026 13:11:19:200","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 13:11:19.200","","" +"POL","9909","DD5-PL10020","Uniwersyteckie Centrum Stomatologii i Medycyny Specjalistycznej Sp z o o","203829","PL100202002","6330","3111187","Screening","3","Date of Visit","34310956","0","29 Apr 2026 13:16:52:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 13:16:52.397","","" +"POL","9909","DD5-PL10020","Uniwersyteckie Centrum Stomatologii i Medycyny Specjalistycznej Sp z o o","210848","PL100202003","6330","3193558","Screening","3","Date of Visit","35046666","0","14 May 2026 09:13:18:877","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 09:13:18.877","","" +"POL","9899","DD5-PL10021","RiverMED","196581","PL100212001","6330","2956680","Screening","3","Date of Visit","32265908","0","02 Mar 2026 12:04:56:903","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 12:04:56.903","","" +"POL","9899","DD5-PL10021","RiverMED","196581","PL100212001","6330","3044401","Week I-0 (1)","7","Date of Visit","33432821","0","08 Apr 2026 08:01:52:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 08:01:52.553","","" +"POL","9899","DD5-PL10021","RiverMED","196581","PL100212001","6330","3053433","Week I-2 (1)","8","Date of Visit","33552495","0","15 Apr 2026 07:53:28:713","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 07:53:28.713","","" +"POL","9899","DD5-PL10021","RiverMED","196581","PL100212001","6330","3066723","Week I-4 (1)","9","Date of Visit","33720965","0","28 Apr 2026 11:37:29:403","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:37:29.403","","" +"POL","9899","DD5-PL10021","RiverMED","200106","PL100212002","6330","3031620","Screening","3","Date of Visit","33261142","0","22 Apr 2026 11:30:36:957","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 11:30:36.957","","" +"POL","9899","DD5-PL10021","RiverMED","200114","PL100212003","6330","3031761","Screening","3","Date of Visit","33262820","0","18 May 2026 09:42:04:960","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 09:42:04.960","","" +"POL","9899","DD5-PL10021","RiverMED","200459","PL100212004","6330","3038225","Screening","3","Date of Visit","33351665","0","22 Apr 2026 11:35:32:680","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 11:35:32.680","","" +"POL","9899","DD5-PL10021","RiverMED","200459","PL100212004","6330","3190366","Week I-0 (1)","7","Date of Visit","35002690","0","14 May 2026 08:36:31:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 08:36:31.030","","" +"POL","9899","DD5-PL10021","RiverMED","202202","PL100212005","6330","3072966","Screening","3","Date of Visit","33823038","0","19 May 2026 12:37:57:420","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 12:37:57.420","","" +"POL","9899","DD5-PL10021","RiverMED","210673","PL100212006","6330","3190618","Screening","3","Date of Visit","35005161","0","14 May 2026 09:40:27:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 09:40:27.517","","" +"POL","9899","DD5-PL10021","RiverMED","211290","PL100212007","6330","3203079","Screening","3","Date of Visit","35185894","0","20 May 2026 08:44:56:063","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 08:44:56.063","","" +"POL","9865","DD5-PL10022","Allmedica","200102","PL100222001","6330","3031561","Screening","3","Date of Visit","33260421","0","27 Mar 2026 11:32:00:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 11:32:00.097","","" +"POL","9865","DD5-PL10022","Allmedica","200102","PL100222001","6330","3083609","Week I-0 (1)","7","Date of Visit","33984698","0","23 Apr 2026 12:22:21:680","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 12:22:21.680","","" +"POL","9865","DD5-PL10022","Allmedica","200102","PL100222001","6330","3088924","Week I-2 (1)","8","Date of Visit","34071766","0","06 May 2026 12:13:51:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 12:13:51.567","","" +"POL","9865","DD5-PL10022","Allmedica","200102","PL100222001","6330","3134487","Week I-4 (1)","9","Date of Visit","34679800","0","20 May 2026 11:46:14:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 11:46:14.290","","" +"POL","9917","DD5-PL10023","Szpital Grochowski Im Dr Med Rafala Masztaka Sp Z O O","199170","PL100232001","6330","3012422","Screening","3","Date of Visit","33018491","0","31 Mar 2026 21:28:25:270","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 21:28:25.270","","" +"POL","9934","DD5-PL10024","Clinical Best Solutions Warszawa","197453","PL100242001","6330","2974893","Screening","3","Date of Visit","32502723","0","12 May 2026 08:55:40:643","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 08:55:40.643","","" +"POL","9934","DD5-PL10024","Clinical Best Solutions Warszawa","204218","PL100242002","6330","3118803","Screening","3","Date of Visit","34443495","0","30 Apr 2026 10:50:32:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 10:50:32.727","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","195802","PL100252001","6330","2940370","Screening","3","Date of Visit","32030158","0","17 Mar 2026 01:14:07:367","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 01:14:07.367","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202195","PL100252002","6330","3072811","Screening","3","Date of Visit","33820957","0","07 May 2026 19:03:19:947","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 19:03:19.947","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202622","PL100252003","6330","3081641","Screening","3","Date of Visit","33957811","0","21 Apr 2026 18:01:03:593","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 18:01:03.593","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202622","PL100252003","6330","3138539","Week I-0 (1)","7","Date of Visit","34748655","0","08 May 2026 07:24:35:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 07:24:35.417","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202622","PL100252003","6330","3138664","Week I-2 (1)","8","Date of Visit","34750329","0","25 May 2026 06:09:09:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 06:09:09.010","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202788","PL100252004","6330","3085495","Screening","3","Date of Visit","34015720","0","11 May 2026 18:22:07:367","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 18:22:07.367","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202788","PL100252004","6330","3191938","Week I-0 (1)","7","Date of Visit","35025855","0","13 May 2026 19:35:01:110","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 19:35:01.110","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","196786","PL100262001","6330","2960873","Screening","3","Date of Visit","32327729","0","05 May 2026 08:20:40:813","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 08:20:40.813","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","196786","PL100262001","6330","3047352","Week I-0 (1)","7","Date of Visit","33475534","0","07 Apr 2026 06:43:23:777","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 06:43:23.777","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","196786","PL100262001","6330","3050852","Week I-2 (1)","8","Date of Visit","33516826","0","16 Apr 2026 15:51:39:477","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 15:51:39.477","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","196786","PL100262001","6330","3071537","Week I-4 (1)","9","Date of Visit","33804979","0","29 Apr 2026 10:56:00:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 10:56:00.720","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","198505","PL100262002","6330","2998430","Screening","3","Date of Visit","32830768","0","12 May 2026 10:59:35:727","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 10:59:35.727","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","198512","PL100262003","6330","2998529","Screening","3","Date of Visit","32832239","0","12 May 2026 11:35:44:357","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 11:35:44.357","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","201846","PL100262004","6330","3065798","Screening","3","Date of Visit","33707956","0","15 Apr 2026 06:11:55:453","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 06:11:55.453","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","204837","PL100262005","6330","3132360","Screening","3","Date of Visit","34637607","0","07 May 2026 11:47:17:950","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 11:47:17.950","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","204837","PL100262005","6330","3194887","Week I-0 (1)","7","Date of Visit","35067380","0","15 May 2026 09:49:16:850","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 09:49:16.850","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191313","PL100282002","6330","2843705","Screening","3","Date of Visit","30730451","0","18 Mar 2026 11:24:37:647","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 11:24:37.647","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2843840","Screening","3","Date of Visit","30731585","0","12 Feb 2026 14:43:10:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 14:43:10.353","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2899128","Week I-0 (1)","7","Date of Visit","31453157","0","02 Feb 2026 15:28:54:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 15:28:54.937","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2909356","Week I-2 (1)","8","Date of Visit","31581516","0","10 Feb 2026 16:43:16:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 16:43:16.693","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2927031","Week I-4 (1)","9","Date of Visit","31823337","0","02 Mar 2026 13:06:20:160","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 13:06:20.160","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2967045","Week I-8 (1)","10","Date of Visit","32389944","0","26 Mar 2026 12:06:54:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 12:06:54.413","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","3035780","Week I-12 (1)","11","Date of Visit","33316339","0","24 Apr 2026 15:43:56:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 15:43:56.460","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","3094715","Week M-4 (1)","15","Date of Visit","34136500","0","22 May 2026 14:49:54:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 14:49:54.100","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","3043785","Unscheduled 20260331","59","Date of Visit","33419133","0","31 Mar 2026 18:54:33:340","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","31 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","AE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 18:54:33.340","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191333","PL100282004","6330","2843963","Screening","3","Date of Visit","30733162","0","18 Mar 2026 11:40:49:643","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 11:40:49.643","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","2880086","Screening","3","Date of Visit","31213954","0","20 Jan 2026 13:31:46:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 13:31:46.277","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","2947122","Week I-0 (1)","7","Date of Visit","32120658","0","02 Mar 2026 18:28:51:267","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 18:28:51.267","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","2967799","Week I-2 (1)","8","Date of Visit","32402518","0","11 Mar 2026 15:26:58:993","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 15:26:58.993","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","3001914","Week I-4 (1)","9","Date of Visit","32876023","0","18 Mar 2026 11:12:36:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 11:12:36.207","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","3016403","Week I-8 (1)","10","Date of Visit","33070858","0","20 Apr 2026 15:42:24:147","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 15:42:24.147","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","3078494","Week I-12 (1)","11","Date of Visit","33909572","0","18 May 2026 10:24:41:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 10:24:41.413","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192926","PL100282006","6330","2880279","Screening","3","Date of Visit","31216497","0","18 Mar 2026 12:05:39:233","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 12:05:39.233","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","2883336","Screening","3","Date of Visit","31251883","0","18 Mar 2026 12:08:33:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 12:08:33.717","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","2980342","Week I-0 (1)","7","Date of Visit","32571339","0","11 Mar 2026 16:09:47:797","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 16:09:47.797","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","3002031","Week I-2 (1)","8","Date of Visit","32877821","0","18 Mar 2026 13:48:24:650","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 13:48:24.650","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","3017032","Week I-4 (1)","9","Date of Visit","33078947","0","31 Mar 2026 18:14:18:797","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 18:14:18.797","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","3043759","Week I-8 (1)","10","Date of Visit","33418702","0","29 Apr 2026 12:46:02:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 12:46:02.577","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","2883364","Screening","3","Date of Visit","31252082","0","11 Feb 2026 16:03:20:203","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 16:03:20.203","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","2947375","Week I-0 (1)","7","Date of Visit","32124240","0","02 Mar 2026 13:32:21:500","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 13:32:21.500","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","2967235","Week I-2 (1)","8","Date of Visit","32393891","0","11 Mar 2026 15:50:53:610","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 15:50:53.610","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","3001968","Week I-4 (1)","9","Date of Visit","32876872","0","18 Mar 2026 10:23:16:297","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 10:23:16.297","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","3016163","Week I-8 (1)","10","Date of Visit","33067390","0","20 Apr 2026 15:44:02:183","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 15:44:02.183","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","3078497","Week I-12 (1)","11","Date of Visit","33909594","0","18 May 2026 10:39:46:223","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 10:39:46.223","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","197710","PL100282009","6330","2980416","Screening","3","Date of Visit","32572459","0","11 Mar 2026 16:28:13:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 16:28:13.407","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","197710","PL100282009","6330","3047452","Week I-0 (1)","7","Date of Visit","33477117","0","13 Apr 2026 11:57:26:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 11:57:26.667","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","197710","PL100282009","6330","3062088","Week I-2 (1)","8","Date of Visit","33657903","0","22 Apr 2026 08:57:11:300","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 08:57:11.300","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","197710","PL100282009","6330","3083482","Week I-4 (1)","9","Date of Visit","33982122","0","29 Apr 2026 12:49:28:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 12:49:28.987","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","198490","PL100282010","6330","2998074","Screening","3","Date of Visit","32825135","0","11 Mar 2026 16:32:55:313","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 16:32:55.313","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","198490","PL100282010","6330","3057566","Week I-0 (1)","7","Date of Visit","33603221","0","10 Apr 2026 15:25:09:933","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 15:25:09.933","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","198490","PL100282010","6330","3060281","Week I-2 (1)","8","Date of Visit","33635469","0","26 Apr 2026 12:01:17:337","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260426 12:01:17.337","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","198490","PL100282010","6330","3096389","Week I-4 (1)","9","Date of Visit","34158117","0","05 May 2026 16:47:20:347","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 16:47:20.347","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","199238","PL100282011","6330","3013837","Screening","3","Date of Visit","33037434","0","19 Mar 2026 12:04:28:150","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 12:04:28.150","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","199238","PL100282011","6330","3089164","Week I-0 (1)","7","Date of Visit","34076545","0","26 Apr 2026 12:11:05:180","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260426 12:11:05.180","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","199238","PL100282011","6330","3096405","Week I-2 (1)","8","Date of Visit","34158235","0","11 May 2026 13:58:08:247","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 13:58:08.247","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","199238","PL100282011","6330","3186067","Week I-4 (1)","9","Date of Visit","34937900","0","22 May 2026 15:46:31:997","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 15:46:31.997","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","201474","PL100282012","6330","3057908","Screening","3","Date of Visit","33606836","0","10 Apr 2026 15:47:12:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 15:47:12.770","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","201474","PL100282012","6330","3137959","Week I-0 (1)","7","Date of Visit","34740243","0","11 May 2026 14:14:17:943","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 14:14:17.943","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","201474","PL100282012","6330","3186105","Week I-2 (1)","8","Date of Visit","34938283","0","22 May 2026 15:13:50:883","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 15:13:50.883","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","202110","PL100282013","6330","3071529","Screening","3","Date of Visit","33804710","0","20 Apr 2026 16:17:37:210","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 16:17:37.210","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","203895","PL100282014","6330","3112412","Screening","3","Date of Visit","34326298","0","29 Apr 2026 13:01:12:290","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 13:01:12.290","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","196065","PL100302001","6330","2945966","Screening","3","Date of Visit","32103355","0","19 Feb 2026 12:13:24:867","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 12:13:24.867","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","196065","PL100302001","6330","3044585","Week I-0 (1)","7","Date of Visit","33435961","0","01 Apr 2026 11:45:52:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 11:45:52.213","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","196065","PL100302001","6330","3045088","Week I-2 (1)","8","Date of Visit","33442406","0","14 Apr 2026 14:17:03:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 14:17:03.080","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","196065","PL100302001","6330","3065536","Week I-4 (1)","9","Date of Visit","33704490","0","30 Apr 2026 07:35:03:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 07:35:03.077","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198566","PL100302002","6330","2999630","Screening","3","Date of Visit","32845055","0","13 Mar 2026 09:13:50:750","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260313 09:13:50.750","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198566","PL100302002","6330","3079998","Week I-0 (1)","7","Date of Visit","33931439","0","04 May 2026 13:28:40:263","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 13:28:40.263","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198566","PL100302002","6330","3127615","Week I-2 (1)","8","Date of Visit","34566175","0","04 May 2026 13:44:43:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 13:44:43.763","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198566","PL100302002","6330","3127650","Week I-4 (1)","9","Date of Visit","34566592","0","19 May 2026 09:38:37:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 09:38:37.340","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198761","PL100302003","6330","3003302","Screening","3","Date of Visit","32893482","0","22 Apr 2026 13:33:44:987","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 13:33:44.987","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198784","PL100302004","6330","3003852","Screening","3","Date of Visit","32900930","0","28 Apr 2026 09:06:20:710","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 09:06:20.710","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","201764","PL100302005","6330","3064122","Screening","3","Date of Visit","33686239","0","19 May 2026 08:40:31:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 08:40:31.350","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","201764","PL100302005","6330","3126552","Week I-0 (1)","7","Date of Visit","34540813","0","05 May 2026 11:55:37:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 11:55:37.773","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","201764","PL100302005","6330","3131618","Week I-2 (1)","8","Date of Visit","34628328","0","19 May 2026 07:05:38:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 07:05:38.223","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202522","PL100302006","6330","3079467","Screening","3","Date of Visit","33924040","0","22 Apr 2026 13:37:35:223","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 13:37:35.223","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202522","PL100302006","6330","3187311","Week I-0 (1)","7","Date of Visit","34958482","0","15 May 2026 14:10:36:107","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 14:10:36.107","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202544","PL100302007","6330","3080070","Screening","3","Date of Visit","33932094","0","22 Apr 2026 13:39:29:863","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 13:39:29.863","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202544","PL100302007","6330","3187499","Week I-0 (1)","7","Date of Visit","34961587","0","20 May 2026 12:11:58:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 12:11:58.430","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202865","PL100302008","6330","3087429","Screening","3","Date of Visit","34043623","0","28 Apr 2026 11:58:01:717","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 11:58:01.717","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202865","PL100302008","6330","3126448","Week I-0 (1)","7","Date of Visit","34537872","0","05 May 2026 08:51:37:447","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 08:51:37.447","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202865","PL100302008","6330","3129539","Week I-2 (1)","8","Date of Visit","34591805","0","19 May 2026 10:27:13:377","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 10:27:13.377","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202917","PL100302009","6330","3088502","Screening","3","Date of Visit","34063414","0","30 Apr 2026 08:32:39:343","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 08:32:39.343","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","204150","PL100302010","6330","3117165","Screening","3","Date of Visit","34401968","0","30 Apr 2026 08:52:24:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 08:52:24.930","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","204150","PL100302010","6330","3190975","Week I-0 (1)","7","Date of Visit","35009585","0","21 May 2026 13:46:26:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 13:46:26.577","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","204160","PL100302011","6330","3117392","Screening","3","Date of Visit","34404660","0","30 Apr 2026 09:02:12:450","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 09:02:12.450","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","204160","PL100302011","6330","3185310","Week I-0 (1)","7","Date of Visit","34927751","0","21 May 2026 13:46:57:097","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 13:46:57.097","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","2886698","Screening","3","Date of Visit","31292983","0","20 Jan 2026 08:43:49:357","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 08:43:49.357","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","2953011","Week I-0 (1)","7","Date of Visit","32204053","0","24 Feb 2026 07:55:02:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 07:55:02.843","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","2953143","Week I-2 (1)","8","Date of Visit","32206310","0","10 Mar 2026 06:47:48:230","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 06:47:48.230","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","2995946","Week I-4 (1)","9","Date of Visit","32796214","0","24 Mar 2026 11:24:59:277","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 11:24:59.277","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","3029288","Week I-8 (1)","10","Date of Visit","33229480","0","29 Apr 2026 08:21:47:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 08:21:47.707","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","3196081","Unscheduled 20260324","59","Date of Visit","35084779","0","15 May 2026 08:35:52:630","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","24 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","IT WAS PLANNED VISIT I-4 BUT THE SYSTEM ASKED ME TO ADD WHOLE BLOOD DNA AS AN ADDITIONAL VISIT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 08:35:52.630","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","2932408","Screening","3","Date of Visit","31905181","0","13 Feb 2026 11:38:00:673","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 11:38:00.673","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","3021812","Week I-0 (1)","7","Date of Visit","33133755","0","23 Mar 2026 10:54:02:507","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 10:54:02.507","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","3025600","Week I-2 (1)","8","Date of Visit","33182372","0","10 Apr 2026 06:11:41:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 06:11:41.560","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","3058824","Week I-4 (1)","9","Date of Visit","33619904","0","20 Apr 2026 06:59:58:070","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 06:59:58.070","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","3076393","Week I-8 (1)","10","Date of Visit","33873028","0","15 May 2026 07:36:30:083","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 07:36:30.083","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","2908885","Screening","3","Date of Visit","31576136","0","02 Feb 2026 12:47:40:393","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 12:47:40.393","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","2989796","Week I-0 (1)","7","Date of Visit","32707979","0","09 Mar 2026 09:48:13:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 09:48:13.667","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","2989989","Week I-2 (1)","8","Date of Visit","32710774","0","24 Mar 2026 10:27:07:450","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 10:27:07.450","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","3028822","Week I-4 (1)","9","Date of Visit","33224316","0","14 Apr 2026 05:56:18:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 05:56:18.153","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","3063499","Week I-8 (1)","10","Date of Visit","33678410","0","08 May 2026 07:28:32:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260508 07:28:32.037","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194893","PL100351002","6330","2922660","Screening","3","Date of Visit","31760668","0","10 Mar 2026 09:23:24:230","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 09:23:24.230","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198286","PL100351003","6330","2994435","Screening","3","Date of Visit","32774634","0","09 Apr 2026 11:38:38:117","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 11:38:38.117","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","2994643","Screening","3","Date of Visit","32778238","0","10 Mar 2026 09:46:50:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 09:46:50.930","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","3034956","Week I-0 (1)","7","Date of Visit","33305445","0","27 Mar 2026 08:43:54:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 08:43:54.720","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","3037700","Week I-2 (1)","8","Date of Visit","33343913","0","09 Apr 2026 11:41:30:857","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 11:41:30.857","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","3057356","Week I-4 (1)","9","Date of Visit","33600849","0","24 Apr 2026 08:27:18:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 08:27:18.460","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","3091812","Week I-8 (1)","10","Date of Visit","34106914","0","21 May 2026 10:28:06:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 10:28:06.627","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200565","PL100351005","6330","3040333","Screening","3","Date of Visit","33378431","0","01 Apr 2026 13:44:30:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 13:44:30.433","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200565","PL100351005","6330","3111004","Week I-0 (1)","7","Date of Visit","34309063","0","28 Apr 2026 05:53:49:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 05:53:49.600","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200565","PL100351005","6330","3113415","Week I-2 (1)","8","Date of Visit","34339729","0","12 May 2026 12:04:57:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 12:04:57.497","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200919","PL100351006","6330","3046912","Screening","3","Date of Visit","33469754","0","03 Apr 2026 12:20:52:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 12:20:52.290","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200919","PL100351006","6330","3061520","Week I-0 (1)","7","Date of Visit","33650361","0","13 Apr 2026 12:58:03:790","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 12:58:03.790","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200919","PL100351006","6330","3062227","Week I-2 (1)","8","Date of Visit","33659462","0","28 Apr 2026 05:58:33:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 05:58:33.857","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200919","PL100351006","6330","3113433","Week I-4 (1)","9","Date of Visit","34339948","0","15 May 2026 11:33:47:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 11:33:47.297","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","203868","PL100351007","6330","3111909","Screening","3","Date of Visit","34319493","0","12 May 2026 09:23:20:443","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 09:23:20.443","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","210435","PL100351008","6330","3185205","Screening","3","Date of Visit","34925637","0","12 May 2026 12:10:52:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 12:10:52.237","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2843254","Screening","3","Date of Visit","30726016","0","09 Jan 2026 08:09:11:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 08:09:11.957","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2867813","Week I-0 (1)","7","Date of Visit","31063760","0","09 Jan 2026 09:24:59:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 09:24:59.157","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2869829","Week I-2 (1)","8","Date of Visit","31088777","0","23 Jan 2026 14:43:55:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 14:43:55.767","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2894953","Week I-4 (1)","9","Date of Visit","31398263","0","06 Feb 2026 09:33:40:740","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 09:33:40.740","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2919987","Week I-8 (1)","10","Date of Visit","31725016","0","08 Mar 2026 10:50:49:990","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260308 10:50:49.990","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2989036","Week I-12 (1)","11","Date of Visit","32697607","0","03 Apr 2026 13:08:53:427","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 13:08:53.427","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","3096227","Unscheduled 20260401","59","Date of Visit","34156232","0","27 Apr 2026 13:49:26:877","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","01 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 13:49:26.877","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2843528","Screening","3","Date of Visit","30728820","0","09 Jan 2026 09:45:50:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 09:45:50.477","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2867921","Week I-0 (1)","7","Date of Visit","31065011","0","09 Jan 2026 13:28:02:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 13:28:02.367","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2870442","Week I-2 (1)","8","Date of Visit","31095917","0","23 Jan 2026 15:00:35:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 15:00:35.783","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2895022","Week I-4 (1)","9","Date of Visit","31399532","0","06 Feb 2026 09:53:41:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 09:53:41.047","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2920039","Week I-8 (1)","10","Date of Visit","31725592","0","08 Mar 2026 10:57:56:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260308 10:57:56.050","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2989038","Week I-12 (1)","11","Date of Visit","32697617","0","03 Apr 2026 10:22:57:673","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 10:22:57.673","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","3067651","Unscheduled 20260401","59","Date of Visit","33742691","0","15 Apr 2026 13:28:47:197","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","01 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 13:28:47.197","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2843580","Screening","3","Date of Visit","30729377","0","09 Jan 2026 13:50:40:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 13:50:40.937","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2868050","Week I-0 (1)","7","Date of Visit","31066699","0","09 Jan 2026 15:01:46:190","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260109 15:01:46.190","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2870593","Week I-2 (1)","8","Date of Visit","31097595","0","23 Jan 2026 15:13:49:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260123 15:13:49.400","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2895053","Week I-4 (1)","9","Date of Visit","31400198","0","06 Feb 2026 10:02:15:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 10:02:15.130","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2920060","Week I-8 (1)","10","Date of Visit","31725810","0","08 Mar 2026 10:59:33:017","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260308 10:59:33.017","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2989039","Week I-12 (1)","11","Date of Visit","32697625","0","03 Apr 2026 12:35:09:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 12:35:09.207","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","3112394","Unscheduled 20260401","59","Date of Visit","34326107","0","27 Apr 2026 13:52:16:600","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","01 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 13:52:16.600","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2872683","Screening","3","Date of Visit","31121119","0","05 Feb 2026 12:16:08:777","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260205 12:16:08.777","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2916473","Week I-0 (1)","7","Date of Visit","31671670","0","09 Feb 2026 11:57:22:527","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 11:57:22.527","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2922853","Week I-2 (1)","8","Date of Visit","31762852","0","19 Feb 2026 14:35:07:970","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 14:35:07.970","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2947012","Week I-4 (1)","9","Date of Visit","32119094","0","08 Mar 2026 13:34:57:750","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260308 13:34:57.750","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2989067","Week I-8 (1)","10","Date of Visit","32698252","0","03 Apr 2026 13:40:19:727","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 13:40:19.727","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","3067655","Unscheduled 20260305","59","Date of Visit","33741087","0","15 Apr 2026 12:56:42:723","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","05 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 12:56:42.723","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2872768","Screening","3","Date of Visit","31122259","0","12 Feb 2026 13:05:17:873","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 13:05:17.873","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2923238","Week I-0 (1)","7","Date of Visit","31767852","0","12 Feb 2026 13:05:17:893","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 13:05:17.893","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2929374","Week I-2 (1)","8","Date of Visit","31855102","0","24 Feb 2026 12:32:08:397","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 12:32:08.397","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2954996","Week I-4 (1)","9","Date of Visit","32239553","0","16 Mar 2026 16:41:38:637","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 16:41:38.637","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","3010625","Week I-8 (1)","10","Date of Visit","32994538","0","10 Apr 2026 15:38:47:953","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 15:38:47.953","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2933304","Unscheduled 20260311","59","Date of Visit","31918885","0","15 Apr 2026 13:08:47:900","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","11 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","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 13:08:47.900","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","3203976","Unscheduled 20260507","59","Date of Visit","35196982","0","20 May 2026 13:56:16:740","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","07 MAY 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","THE PATIENT ATTENDED THE VISIT TO SUBMIT A PREVIOUSLY PENDING STOOL SAMPLE FROM VISIT I-12/M-0 FOR LABORATORY TESTING.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 13:56:16.740","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","2885817","Screening","3","Date of Visit","31282703","0","11 Feb 2026 13:23:03:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 13:23:03.817","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","2931315","Week I-0 (1)","7","Date of Visit","31887581","0","13 Feb 2026 12:52:31:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 12:52:31.070","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","2937025","Week I-2 (1)","8","Date of Visit","31980525","0","10 Mar 2026 18:38:45:313","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 18:38:45.313","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","2998658","Week I-4 (1)","9","Date of Visit","32833930","0","12 Mar 2026 13:35:20:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 13:35:20.230","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","3004462","Week I-8 (1)","10","Date of Visit","32911367","0","10 Apr 2026 15:35:46:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 15:35:46.230","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","3060327","Week I-12 (1)","11","Date of Visit","33635851","0","13 May 2026 13:54:39:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 13:54:39.857","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","2896847","Screening","3","Date of Visit","31425191","0","12 Feb 2026 13:53:29:220","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 13:53:29.220","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","2946009","Week I-0 (1)","7","Date of Visit","32103920","0","23 Feb 2026 11:59:47:047","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260223 11:59:47.047","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","2951293","Week I-2 (1)","8","Date of Visit","32175653","0","08 Mar 2026 14:17:20:310","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260308 14:17:20.310","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","2989070","Week I-4 (1)","9","Date of Visit","32698307","0","23 Mar 2026 12:00:51:630","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 12:00:51.630","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","3025931","Week I-8 (1)","10","Date of Visit","33187614","0","20 Apr 2026 16:54:17:950","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 16:54:17.950","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","3078650","Week I-12 (1)","11","Date of Visit","33911109","0","20 May 2026 13:30:48:777","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 13:30:48.777","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","3067750","Unscheduled 20260305","59","Date of Visit","33742439","0","15 Apr 2026 13:24:24:533","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","05 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 13:24:24.533","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193707","PL100362008","6330","2897037","Screening","3","Date of Visit","31428220","0","13 Feb 2026 09:48:23:687","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 09:48:23.687","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194274","PL100362009","6330","2909204","Screening","3","Date of Visit","31579675","0","23 Mar 2026 11:37:32:660","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 11:37:32.660","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194276","PL100362010","6330","2909271","Screening","3","Date of Visit","31580455","0","06 Mar 2026 14:32:11:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 14:32:11.187","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194276","PL100362010","6330","2966422","Week I-0 (1)","7","Date of Visit","32381891","0","06 Mar 2026 16:05:17:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 16:05:17.647","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194276","PL100362010","6330","2988373","Week I-2 (1)","8","Date of Visit","32691291","0","23 Mar 2026 12:27:08:717","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 12:27:08.717","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194276","PL100362010","6330","3026006","Week I-4 (1)","9","Date of Visit","33188751","0","03 Apr 2026 11:46:30:927","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 11:46:30.927","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","2923687","Screening","3","Date of Visit","31774899","0","06 Mar 2026 13:12:30:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 13:12:30.007","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","2966623","Week I-0 (1)","7","Date of Visit","32384063","0","06 Mar 2026 14:15:15:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 14:15:15.717","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","2984373","Week I-2 (1)","8","Date of Visit","32630408","0","23 Mar 2026 11:47:46:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 11:47:46.077","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","3025858","Week I-4 (1)","9","Date of Visit","33186649","0","03 Apr 2026 12:21:28:750","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 12:21:28.750","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","3048405","Week I-8 (1)","10","Date of Visit","33489316","0","05 May 2026 07:55:44:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 07:55:44.930","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","197549","PL100362012","6330","2977327","Screening","3","Date of Visit","32533423","0","09 Apr 2026 13:36:36:043","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 13:36:36.043","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198311","PL100362013","6330","2994970","Screening","3","Date of Visit","32783547","0","23 Mar 2026 10:01:55:057","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 10:01:55.057","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198311","PL100362013","6330","3046623","Week I-0 (1)","7","Date of Visit","33465726","0","03 Apr 2026 14:31:01:553","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 14:31:01.553","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198311","PL100362013","6330","3048589","Week I-2 (1)","8","Date of Visit","33491014","0","20 Apr 2026 16:48:45:727","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 16:48:45.727","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198320","PL100362014","6330","2995109","Screening","3","Date of Visit","32785302","0","03 Apr 2026 13:38:37:293","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 13:38:37.293","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198320","PL100362014","6330","3051901","Week I-0 (1)","7","Date of Visit","33530443","0","09 Apr 2026 15:31:48:387","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 15:31:48.387","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198320","PL100362014","6330","3058075","Week I-2 (1)","8","Date of Visit","33609056","0","20 Apr 2026 16:28:52:210","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 16:28:52.210","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198326","PL100362015","6330","2995209","Screening","3","Date of Visit","32786399","0","23 Mar 2026 10:53:22:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 10:53:22.960","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198326","PL100362015","6330","3046747","Week I-0 (1)","7","Date of Visit","33467938","0","03 Apr 2026 15:10:53:540","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 15:10:53.540","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198326","PL100362015","6330","3048609","Week I-2 (1)","8","Date of Visit","33491378","0","20 Apr 2026 16:41:29:377","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 16:41:29.377","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198326","PL100362015","6330","3112435","Unscheduled 20260415","59","Date of Visit","34326568","0","27 Apr 2026 14:05:54:403","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","15 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 14:05:54.403","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","204617","PL100362016","6330","3128032","Screening","3","Date of Visit","34571217","0","04 May 2026 15:18:08:893","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 15:18:08.893","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","204621","PL100362017","6330","3128138","Screening","3","Date of Visit","34572288","0","04 May 2026 15:53:36:703","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 15:53:36.703","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","204625","PL100362018","6330","3128197","Screening","3","Date of Visit","34572890","0","20 May 2026 15:04:44:293","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 15:04:44.293","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","204625","PL100362018","6330","3203064","Week I-0 (1)","7","Date of Visit","35185757","0","21 May 2026 07:55:17:057","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 07:55:17.057","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197085","PT100011001","6330","2966785","Screening","3","Date of Visit","32385342","0","04 Mar 2026 17:21:01:933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 17:21:01.933","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197085","PT100011001","6330","3062079","Week I-0 (1)","7","Date of Visit","33657817","0","17 Apr 2026 15:05:01:000","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260417 15:05:01.000","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197085","PT100011001","6330","3074835","Week I-2 (1)","8","Date of Visit","33852609","0","19 May 2026 10:50:41:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 10:50:41.453","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197085","PT100011001","6330","3201086","Week I-4 (1)","9","Date of Visit","35159267","0","19 May 2026 10:55:25:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 10:55:25.833","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197651","PT100011002","6330","2979196","Screening","3","Date of Visit","32556415","0","01 Apr 2026 15:00:57:717","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 15:00:57.717","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194229","PT100012001","6330","2908295","Screening","3","Date of Visit","31567879","0","30 Mar 2026 16:02:41:513","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 16:02:41.513","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194240","PT100012002","6330","2908529","Screening","3","Date of Visit","31571376","0","31 Mar 2026 15:24:09:923","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 15:24:09.923","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","2912687","Screening","3","Date of Visit","31626202","0","10 Feb 2026 19:07:16:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 19:07:16.447","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","2951267","Week I-0 (1)","7","Date of Visit","32175472","0","02 Mar 2026 16:18:25:540","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 16:18:25.540","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","2967583","Week I-2 (1)","8","Date of Visit","32399141","0","23 Mar 2026 16:22:50:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 16:22:50.560","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","3026594","Week I-4 (1)","9","Date of Visit","33195774","0","27 Mar 2026 16:54:48:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 16:54:48.630","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","3038734","Week I-8 (1)","10","Date of Visit","33360531","0","15 May 2026 09:50:18:377","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 09:50:18.377","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196294","PT100012004","6330","2950772","Screening","3","Date of Visit","32167975","0","31 Mar 2026 15:32:16:903","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 15:32:16.903","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196600","PT100012005","6330","2957008","Screening","3","Date of Visit","32270570","0","23 Mar 2026 17:23:07:813","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 17:23:07.813","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196600","PT100012005","6330","3037848","Week I-0 (1)","7","Date of Visit","33346779","0","18 May 2026 16:14:28:793","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 16:14:28.793","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196600","PT100012005","6330","3038796","Week I-2 (1)","8","Date of Visit","33361107","0","13 Apr 2026 09:38:15:143","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 09:38:15.143","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196600","PT100012005","6330","3061760","Week I-4 (1)","9","Date of Visit","33653973","0","15 May 2026 12:54:01:563","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 12:54:01.563","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197752","PT100012006","6330","2981435","Screening","3","Date of Visit","32586399","0","19 May 2026 15:23:32:653","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 15:23:32.653","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197773","PT100012007","6330","2981788","Screening","3","Date of Visit","32591177","0","23 Mar 2026 17:00:39:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 17:00:39.397","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197773","PT100012007","6330","3037931","Week I-0 (1)","7","Date of Visit","33347743","0","27 Mar 2026 18:21:49: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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 18:21:49.320","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197773","PT100012007","6330","3038844","Week I-2 (1)","8","Date of Visit","33361624","0","13 Apr 2026 08:46:00:010","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 08:46:00.010","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197773","PT100012007","6330","3061605","Week I-4 (1)","9","Date of Visit","33651925","0","15 May 2026 13:01:53:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 13:01:53.617","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","202219","PT100012008","6330","3073293","Screening","3","Date of Visit","33831483","0","19 May 2026 16:14:29:353","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 16:14:29.353","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","202226","PT100012009","6330","3073519","Screening","3","Date of Visit","33835407","0","05 May 2026 15:45:48:500","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 15:45:48.500","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","202326","PT100012010","6330","3075405","Screening","3","Date of Visit","33862564","0","19 May 2026 16:21:51:047","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 16:21:51.047","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","204866","PT100012011","6330","3133009","Screening","3","Date of Visit","34647011","0","18 May 2026 10:07:38:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 10:07:38.723","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","2958439","Screening","3","Date of Visit","32293187","0","05 Mar 2026 11:45:04:363","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 11:45:04.363","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","3018579","Week I-0 (1)","7","Date of Visit","33097983","0","20 Mar 2026 09:04:27:670","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 09:04:27.670","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","3021492","Week I-2 (1)","8","Date of Visit","33131071","0","02 Apr 2026 09:57:20:117","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 09:57:20.117","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","3046916","Week I-4 (1)","9","Date of Visit","33469880","0","20 Apr 2026 07:04:39:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 07:04:39.680","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","3076418","Week I-8 (1)","10","Date of Visit","33873275","0","18 May 2026 08:40:08:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 08:40:08.887","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","199483","PT100022002","6330","3019111","Screening","3","Date of Visit","33104083","0","13 Apr 2026 10:56:41:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 10:56:41.050","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","199483","PT100022002","6330","3066651","Week I-0 (1)","7","Date of Visit","33719738","0","16 Apr 2026 08:20:34:723","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 08:20:34.723","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","199483","PT100022002","6330","3069379","Week I-2 (1)","8","Date of Visit","33765755","0","30 Apr 2026 15:53:33:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 15:53:33.683","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","199483","PT100022002","6330","3125093","Week I-4 (1)","9","Date of Visit","34518329","0","18 May 2026 07:56:54:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 07:56:54.437","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","190800","PT100042001","6330","2833491","Screening","3","Date of Visit","30607439","0","08 Jan 2026 15:09:43:533","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260108 15:09:43.533","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196753","PT100042002","6330","2960197","Screening","3","Date of Visit","32318446","0","29 Mar 2026 22:19:31:630","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260329 22:19:31.630","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196918","PT100042003","6330","2963706","Screening","3","Date of Visit","32359262","0","06 Mar 2026 00:22:26:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 00:22:26.853","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196918","PT100042003","6330","3046782","Week I-0 (1)","7","Date of Visit","33468484","0","07 Apr 2026 15:16:42:603","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 15:16:42.603","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196918","PT100042003","6330","3052171","Week I-2 (1)","8","Date of Visit","33534514","0","19 Apr 2026 23:10:35:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260419 23:10:35.870","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196918","PT100042003","6330","3075986","Week I-4 (1)","9","Date of Visit","33867386","0","30 Apr 2026 14:03:17:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 14:03:17.683","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","197655","PT100042004","6330","2979244","Screening","3","Date of Visit","32556999","0","17 Mar 2026 16:33:23:107","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 16:33:23.107","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","197655","PT100042004","6330","3038053","Week I-0 (1)","7","Date of Visit","33349708","0","30 Mar 2026 14:52:36:553","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 14:52:36.553","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","197655","PT100042004","6330","3041023","Week I-2 (1)","8","Date of Visit","33386293","0","22 Apr 2026 08:34:14:847","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 08:34:14.847","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","197655","PT100042004","6330","3083391","Week I-4 (1)","9","Date of Visit","33981108","0","22 Apr 2026 08:43:38:787","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 08:43:38.787","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","202099","PT100042005","6330","3071345","Screening","3","Date of Visit","33801576","0","30 Apr 2026 23:02:11:400","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 23:02:11.400","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","210860","PT100042006","6330","3193773","Screening","3","Date of Visit","35050451","0","23 May 2026 22:01:34:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260523 22:01:34.550","","" +"PRT","9211","DD5-PT10009","ULSAM - HOSP. SANTA LUZIA","200708","PT100092001","6330","3042489","Screening","3","Date of Visit","33403169","0","20 May 2026 14:36:48:487","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 14:36:48.487","","" +"PRT","9211","DD5-PT10009","ULSAM - HOSP. SANTA LUZIA","200708","PT100092001","6330","3187903","Week I-0 (1)","7","Date of Visit","34969053","0","12 May 2026 13:22:40:363","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 13:22:40.363","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","196622","RO100012001","6330","2957395","Screening","3","Date of Visit","32278210","0","24 Mar 2026 14:37:22:130","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 14:37:22.130","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","196622","RO100012001","6330","3068834","Week I-0 (1)","7","Date of Visit","33757349","0","14 May 2026 10:07:56:327","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 10:07:56.327","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","199460","RO100012002","6330","3018591","Screening","3","Date of Visit","33098104","0","24 Mar 2026 14:41:37:073","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 14:41:37.073","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","199460","RO100012002","6330","3114108","Week I-0 (1)","7","Date of Visit","34351627","0","14 May 2026 16:27:27:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 16:27:27.313","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","199460","RO100012002","6330","3195013","Week I-2 (1)","8","Date of Visit","35069183","0","15 May 2026 08:44:46:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 08:44:46.123","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","2884361","Screening","3","Date of Visit","31265480","0","16 Feb 2026 17:05:34:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 17:05:34.743","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","2978897","Week I-0 (1)","7","Date of Visit","32553348","0","18 Mar 2026 22:21:06:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 22:21:06.957","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","3017792","Week I-2 (1)","8","Date of Visit","33088515","0","21 Mar 2026 15:46:05:093","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260321 15:46:05.093","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","3023721","Week I-4 (1)","9","Date of Visit","33157705","0","31 Mar 2026 10:03:28:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 10:03:28.440","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","3042748","Week I-8 (1)","10","Date of Visit","33405793","0","27 Apr 2026 07:02:16:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 07:02:16.867","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","3060964","Unscheduled 20260328","59","Date of Visit","33643106","0","12 Apr 2026 18:31:30:247","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","28 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","PATIENT BROKE THE PHONE CONTAINING THE JOURNAL. CAME TO PROVIDE A NEW ONE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260412 18:31:30.247","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","2940413","Screening","3","Date of Visit","32030820","0","22 May 2026 10:05:54:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 10:05:54.877","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","3034761","Week I-0 (1)","7","Date of Visit","33303496","0","31 Mar 2026 09:00:00:257","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 09:00:00.257","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","3042494","Week I-2 (1)","8","Date of Visit","33403261","0","12 Apr 2026 20:04:42:907","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260412 20:04:42.907","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","3060989","Week I-4 (1)","9","Date of Visit","33643221","0","06 May 2026 14:14:02:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 14:14:02.387","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","3039286","Unscheduled 20260225","59","Date of Visit","33365190","0","29 Mar 2026 13:47:57:510","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","25 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","TO REPEAT SEROLOGY FOR HEPATITIS B","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260329 13:47:57.510","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","200004","RO100032003","6330","3029512","Screening","3","Date of Visit","33232291","0","23 Apr 2026 12:51:44:590","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","24 MAR 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 12:51:44.590","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","190852","RO100062001","6330","2834456","Screening","3","Date of Visit","30619198","0","12 Feb 2026 13:58:36:387","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260212 13:58:36.387","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","192567","RO100062002","6330","2872083","Screening","3","Date of Visit","31113762","0","26 Apr 2026 18:59:03:320","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260426 18:59:03.320","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","196590","RO100062003","6330","2956792","Screening","3","Date of Visit","32267165","0","11 May 2026 13:47:34:607","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 13:47:34.607","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","196590","RO100062003","6330","3053332","Week I-0 (1)","7","Date of Visit","33550998","0","26 Apr 2026 19:03:23:407","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260426 19:03:23.407","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","196590","RO100062003","6330","3096506","Week I-2 (1)","8","Date of Visit","34159142","0","28 Apr 2026 20:51:27:427","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 20:51:27.427","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","196590","RO100062003","6330","3116247","Week I-4 (1)","9","Date of Visit","34388263","0","06 May 2026 09:04:51:747","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 09:04:51.747","","" +"SWE","9847","DD5-SE10001","Ersta sjukhus","200421","SE100012001","6330","3037642","Screening","3","Date of Visit","33343411","0","21 Apr 2026 08:12:56:140","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 08:12:56.140","","" +"SWE","9847","DD5-SE10001","Ersta sjukhus","205129","SE100012002","6330","3138595","Screening","3","Date of Visit","34749155","0","12 May 2026 08:28:09:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 08:28:09.497","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2887398","Screening","3","Date of Visit","31301340","0","11 May 2026 09:12:41:967","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 09:12:41.967","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2939306","Week I-0 (1)","7","Date of Visit","32014500","0","16 Feb 2026 14:03:08:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 14:03:08.177","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2939671","Week I-2 (1)","8","Date of Visit","32019451","0","02 Mar 2026 14:09:19:483","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 14:09:19.483","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2967342","Week I-4 (1)","9","Date of Visit","32395171","0","18 Mar 2026 13:52:12:817","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT DECIDED TO END TREATMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 13:52:12.817","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","3017003","Induction Early Discontinuation (1)","12","Date of Visit","33078810","0","11 May 2026 09:14:42:723","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 09:14:42.723","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","3017004","Induction Safety Follow Up (1)","13","Date of Visit","33078811","0","27 Apr 2026 09:36:48:763","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 09:36:48.763","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","194785","SE100022002","6330","2919904","Screening","3","Date of Visit","31724097","0","16 Feb 2026 07:05:52:390","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 07:05:52.390","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","2928490","Screening","3","Date of Visit","31844579","0","26 Feb 2026 11:32:11:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 11:32:11.417","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","2976004","Week I-0 (1)","7","Date of Visit","32517204","0","04 Mar 2026 12:54:07:077","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 12:54:07.077","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","2976974","Week I-2 (1)","8","Date of Visit","32529610","0","18 Mar 2026 13:27:04:507","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 13:27:04.507","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","3016940","Week I-4 (1)","9","Date of Visit","33077640","0","01 Apr 2026 05:21:21:713","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 05:21:21.713","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","3044265","Week I-8 (1)","10","Date of Visit","33430207","0","29 Apr 2026 12:31:14:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 12:31:14.237","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","201752","SE100022004","6330","3063829","Screening","3","Date of Visit","33682375","0","21 May 2026 12:12:00:550","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 12:12:00.550","","" +"SWE","9856","DD5-SE10004","Orebro universitetssjukhus","204542","SE100042001","6330","3126401","Screening","3","Date of Visit","34537156","0","04 May 2026 11:33:03:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 11:33:03.760","","" +"SWE","9835","DD5-SE10009","Alingsas lasarett","201984","SE100092001","6330","3069125","Screening","3","Date of Visit","33761610","0","16 Apr 2026 07:26:39:590","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 07:26:39.590","","" +"SWE","9831","DD5-SE10010","Akademiska Sjukhuset","202673","SE100102001","6330","3082957","Screening","3","Date of Visit","33974959","0","22 Apr 2026 13:46:12:313","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 13:46:12.313","","" +"SWE","9831","DD5-SE10010","Akademiska Sjukhuset","202673","SE100102001","6330","3200376","Week I-0 (1)","7","Date of Visit","35147884","0","19 May 2026 10:58:24:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 10:58:24.313","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2860345","Screening","3","Date of Visit","30971228","0","13 Feb 2026 13:30:57:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 13:30:57.887","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2889687","Week I-0 (1)","7","Date of Visit","31328680","0","13 Feb 2026 13:24:40:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 13:24:40.560","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2890978","Week I-2 (1)","8","Date of Visit","31344474","0","13 Feb 2026 13:11:12:233","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 22JAN2026 > RASH","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 13:11:12.233","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2925717","Induction Early Discontinuation (1)","12","Date of Visit","31803646","0","13 Feb 2026 13:08:03:423","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260213 13:08:03.423","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","194489","TR100022001","6330","2913604","Screening","3","Date of Visit","31637271","0","26 Mar 2026 12:28:38:473","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 12:28:38.473","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","196426","TR100022002","6330","2953443","Screening","3","Date of Visit","32210724","0","06 Mar 2026 13:58:36:040","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 13:58:36.040","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","200139","TR100022003","6330","3032330","Screening","3","Date of Visit","33272258","0","26 Mar 2026 12:40:36:013","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 12:40:36.013","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","200139","TR100022003","6330","3111713","Week I-0 (1)","7","Date of Visit","34317105","0","27 Apr 2026 12:25:44:830","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 12:25:44.830","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","200139","TR100022003","6330","3112169","Week I-2 (1)","8","Date of Visit","34322653","0","11 May 2026 10:42:44:227","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 10:42:44.227","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","200139","TR100022003","6330","3185029","Week I-4 (1)","9","Date of Visit","34924963","0","21 May 2026 13:15:14:773","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 13:15:14.773","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196585","TR100032001","6330","2956738","Screening","3","Date of Visit","32266672","0","06 Mar 2026 08:26:32:940","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 08:26:32.940","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196585","TR100032001","6330","3051264","Week I-0 (1)","7","Date of Visit","33523132","0","08 Apr 2026 08:01:02:717","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 08:01:02.717","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196585","TR100032001","6330","3053431","Week I-2 (1)","8","Date of Visit","33552457","0","21 Apr 2026 11:02:11:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 11:02:11.247","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196585","TR100032001","6330","3080201","Week I-4 (1)","9","Date of Visit","33933508","0","06 May 2026 11:37:17:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 11:37:17.850","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","2956746","Screening","3","Date of Visit","32266737","0","10 Apr 2026 11:16:27:383","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 11:16:27.383","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","3051282","Week I-0 (1)","7","Date of Visit","33523274","0","10 Apr 2026 11:44:14:687","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 11:44:14.687","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","3059897","Week I-2 (1)","8","Date of Visit","33630690","0","16 Apr 2026 12:56:08:323","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#002 > 12APR2026 > ULSERATIVE COLITIS EXACERBATION","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 12:56:08.323","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","3070428","Induction Early Discontinuation (1)","12","Date of Visit","33783799","0","12 May 2026 13:53:37:763","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 13:53:37.763","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196700","TR100032003","6330","2959085","Screening","3","Date of Visit","32302756","0","26 Feb 2026 08:23:41:577","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 08:23:41.577","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196700","TR100032003","6330","3053234","Week I-0 (1)","7","Date of Visit","33549917","0","15 Apr 2026 11:03:03:437","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 11:03:03.437","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196700","TR100032003","6330","3067252","Week I-2 (1)","8","Date of Visit","33730990","0","21 Apr 2026 11:10:37:853","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 11:10:37.853","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196700","TR100032003","6330","3080226","Week I-4 (1)","9","Date of Visit","33933767","0","06 May 2026 12:08:54:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 12:08:54.417","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","192863","TR100052001","6330","2878915","Screening","3","Date of Visit","31199235","0","04 Mar 2026 11:31:03:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 11:31:03.247","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","195756","TR100052002","6330","2938939","Screening","3","Date of Visit","32007563","0","17 Mar 2026 10:45:50:103","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 10:45:50.103","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","196588","TR100052003","6330","2956768","Screening","3","Date of Visit","32266960","0","17 Mar 2026 10:46:23:913","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 10:46:23.913","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","201756","TR100052004","6330","3063930","Screening","3","Date of Visit","33683654","0","15 Apr 2026 12:43:27:873","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 12:43:27.873","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","201756","TR100052004","6330","3187470","Week I-0 (1)","7","Date of Visit","34961306","0","14 May 2026 12:05:52:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 12:05:52.927","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","201756","TR100052004","6330","3194363","Week I-2 (1)","8","Date of Visit","35060375","0","22 May 2026 08:52:41:167","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 08:52:41.167","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","200076","TR100062001","6330","3031002","Screening","3","Date of Visit","33252522","0","25 Mar 2026 05:55:49:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 05:55:49.150","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","200076","TR100062001","6330","3126339","Week I-0 (1)","7","Date of Visit","34535868","0","04 May 2026 08:48:18:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 08:48:18.850","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","200076","TR100062001","6330","3126758","Week I-2 (1)","8","Date of Visit","34545386","0","20 May 2026 06:46:41:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 06:46:41.090","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","201870","TR100062002","6330","3066440","Screening","3","Date of Visit","33716232","0","15 Apr 2026 05:56:44:267","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 05:56:44.267","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","201870","TR100062002","6330","3208204","Week I-0 (1)","7","Date of Visit","35252103","0","22 May 2026 08:32:04:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 08:32:04.897","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","199022","TR100072001","6330","3009250","Screening","3","Date of Visit","32974461","0","08 Apr 2026 12:23:45:067","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260408 12:23:45.067","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","200973","TR100072002","6330","3048067","Screening","3","Date of Visit","33485738","0","03 Apr 2026 13:37:45:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 13:37:45.137","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","200973","TR100072002","6330","3191214","Week I-0 (1)","7","Date of Visit","35012544","0","13 May 2026 11:35:03:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 11:35:03.803","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","200973","TR100072002","6330","3191557","Week I-2 (1)","8","Date of Visit","35019321","0","25 May 2026 05:20:00:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260525 05:20:00.033","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","2940391","Screening","3","Date of Visit","32030458","0","07 May 2026 13:28:48:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 13:28:48.127","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","3031902","Week I-0 (1)","7","Date of Visit","33265301","0","25 Mar 2026 13:25:27:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 13:25:27.743","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","3032801","Week I-2 (1)","8","Date of Visit","33276905","0","09 Apr 2026 11:44:14:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 11:44:14.667","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","3057359","Week I-4 (1)","9","Date of Visit","33600957","0","22 Apr 2026 09:56:16:967","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 09:56:16.967","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","3083727","Week I-8 (1)","10","Date of Visit","33986300","0","20 May 2026 13:22:20:967","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 13:22:20.967","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2871984","Screening","3","Date of Visit","31112479","0","13 Jan 2026 06:57:30:653","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260113 06:57:30.653","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2908628","Week I-0 (1)","7","Date of Visit","31572865","0","03 Feb 2026 12:23:37:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 12:23:37.210","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2912343","Week I-2 (1)","8","Date of Visit","31622333","0","16 Feb 2026 10:50:32:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 10:50:32.760","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2939355","Week I-4 (1)","9","Date of Visit","32015547","0","02 Mar 2026 11:22:19:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 11:22:19.720","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2966673","Week I-8 (1)","10","Date of Visit","32384486","0","03 Apr 2026 07:36:30:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 07:36:30.417","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","3048025","Week I-12 (1)","11","Date of Visit","33485076","0","27 Apr 2026 12:23:24:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 12:23:24.817","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","3111823","Week M-4 (1)","15","Date of Visit","34322537","0","22 May 2026 07:21:45:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 07:21:45.790","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","190814","TW100022001","6330","2833861","Screening","3","Date of Visit","30612622","0","22 Jan 2026 07:55:38:730","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 07:55:38.730","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","191960","TW100022002","6330","2859344","Screening","3","Date of Visit","30958704","0","22 Jan 2026 07:58:04:237","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","31 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 07:58:04.237","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","195145","TW100022003","6330","2928020","Screening","3","Date of Visit","31838655","0","15 Feb 2026 06:32:45:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260215 06:32:45.557","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","195145","TW100022003","6330","3011182","Week I-0 (1)","7","Date of Visit","33000875","0","25 Mar 2026 00:57:15:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 00:57:15.397","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","195145","TW100022003","6330","3030635","Week I-2 (1)","8","Date of Visit","33248779","0","05 Apr 2026 06:22:02:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260405 06:22:02.677","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","195145","TW100022003","6330","3048933","Week I-4 (1)","9","Date of Visit","33495862","0","19 Apr 2026 06:44:37:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260419 06:44:37.667","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","197155","TW100022004","6330","2968286","Screening","3","Date of Visit","32408187","0","13 Apr 2026 08:31:06:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 08:31:06.087","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","197155","TW100022004","6330","3063322","Week I-0 (1)","7","Date of Visit","33676117","0","19 Apr 2026 07:21:44:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260419 07:21:44.217","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","197155","TW100022004","6330","3075439","Week I-2 (1)","8","Date of Visit","33863036","0","30 Apr 2026 04:46:48:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 04:46:48.000","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","197155","TW100022004","6330","3119804","Week I-4 (1)","9","Date of Visit","34457367","0","18 May 2026 01:45:51:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 01:45:51.587","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2762822","Screening","3","Date of Visit","29634794","0","27 Nov 2025 05:44:12:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251127 05:44:12.387","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2836979","Week I-0 (1)","7","Date of Visit","30652782","0","19 Dec 2025 06:44:47:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251219 06:44:47.667","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2844429","Week I-2 (1)","8","Date of Visit","30739381","0","05 Jan 2026 01:00:25:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260105 01:00:25.027","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2861294","Week I-4 (1)","9","Date of Visit","30981735","0","15 Jan 2026 06:49:33:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260115 06:49:33.720","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2878928","Week I-8 (1)","10","Date of Visit","31199483","0","11 Feb 2026 09:11:45:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260211 09:11:45.973","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2928877","Week I-12 (1)","11","Date of Visit","31848686","0","16 Mar 2026 06:09:11:883","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 06:09:11.883","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","3008663","Week M-4 (1)","15","Date of Visit","32966124","0","10 Apr 2026 04:10:32:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 04:10:32.630","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","3058691","Week M-8 (1)","16","Date of Visit","33618431","0","07 May 2026 05:51:59:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 05:51:59.157","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","188304","TW100032002","6330","2783440","Screening","3","Date of Visit","29900017","0","13 Jan 2026 12:08:10:270","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","02 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260113 12:08:10.270","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","199288","TW100032003","6330","3014954","Screening","3","Date of Visit","33051340","0","20 Apr 2026 07:48:48:813","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 07:48:48.813","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","199288","TW100032003","6330","3066194","Week I-0 (1)","7","Date of Visit","33713138","0","20 Apr 2026 08:04:05:443","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 08:04:05.443","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","199288","TW100032003","6330","3076683","Week I-2 (1)","8","Date of Visit","33878178","0","30 Apr 2026 05:01:24:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 05:01:24.020","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","199288","TW100032003","6330","3119824","Week I-4 (1)","9","Date of Visit","34457621","0","13 May 2026 05:11:59:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 05:11:59.007","","" +"TWN","9745","DD5-TW10005","Kaohsiung Chang Gung Memorial Hospital","200230","TW100052001","6330","3034058","Screening","3","Date of Visit","33292717","0","02 Apr 2026 03:57:32:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 03:57:32.247","","" +"TWN","9745","DD5-TW10005","Kaohsiung Chang Gung Memorial Hospital","200230","TW100052001","6330","3086447","Week I-0 (1)","7","Date of Visit","34029920","0","04 May 2026 06:59:03:493","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 06:59:03.493","","" +"TWN","9745","DD5-TW10005","Kaohsiung Chang Gung Memorial Hospital","200230","TW100052001","6330","3126386","Week I-2 (1)","8","Date of Visit","34536995","0","19 May 2026 09:56:10:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 09:56:10.323","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2590023","Screening","3","Date of Visit","27797535","0","07 Oct 2025 05:36:13:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251007 05:36:13.560","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2682662","Week I-0 (1)","7","Date of Visit","28843875","0","10 Nov 2025 18:01:00:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251110 18:01:00.987","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2686758","Week I-2 (1)","8","Date of Visit","28889771","0","19 Nov 2025 18:25:01:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251119 18:25:01.623","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2717251","Week I-4 (1)","9","Date of Visit","29240624","0","30 Dec 2025 20:45:19:410","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251230 20:45:19.410","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2859241","Week I-8 (1)","10","Date of Visit","30957602","0","30 Dec 2025 20:46:40:240","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 DEC 2025","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251230 20:46:40.240","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2859242","Week I-12 (1)","11","Date of Visit","30957610","0","26 Jan 2026 23:51:58:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260126 23:51:58.960","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2897312","Week M-4 (1)","15","Date of Visit","31431485","0","15 Apr 2026 18:01:43:667","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 18:01:43.667","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","3068330","Maintenance Early Discontinuation (1)","27","Date of Visit","33749038","0","15 Apr 2026 18:03:16:237","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 18:03:16.237","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","3068331","Maintenance Safety Follow Up (1)","28","Date of Visit","33749039","0","21 May 2026 17:10:38:303","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 17:10:38.303","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2897316","Unscheduled 20260126","59","Date of Visit","32539205","0","05 Mar 2026 18:16:49:973","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA SAMPLE COLLECTED DURING INDUCTION WEEK 12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 18:16:49.973","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","3125244","Unscheduled 20260305","59","Date of Visit","34520907","0","30 Apr 2026 18:55:40:200","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","5 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SUBJECT RECEVIED C-DIFF TESTING DUE TO HEIGHTED AND CONTINUOUS EFFECTS OF BLOATING/STOMACH CRAMPING","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 18:55:40.200","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2604228","Screening","3","Date of Visit","27985274","0","28 Oct 2025 22:13:47:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251028 22:13:47.760","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2724267","Week I-0 (1)","7","Date of Visit","29364104","0","17 Dec 2025 18:59:37:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251217 18:59:37.833","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2840788","Week I-2 (1)","8","Date of Visit","30695971","0","17 Dec 2025 19:12:55:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251217 19:12:55.020","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2840802","Week I-4 (1)","9","Date of Visit","30696126","0","17 Dec 2025 19:24:57:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251217 19:24:57.580","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2840816","Week I-8 (1)","10","Date of Visit","30696342","0","12 Jan 2026 18:36:00:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 JAN 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260112 18:36:00.460","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2873597","Week I-12 (1)","11","Date of Visit","31131819","0","11 Mar 2026 19:01:03:610","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 19:01:03.610","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2977761","Week M-4 (1)","15","Date of Visit","32539370","0","19 Mar 2026 21:50:49:707","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 21:50:49.707","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","3020575","Week M-8 (1)","16","Date of Visit","33121254","0","09 Apr 2026 20:40:07:503","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 20:40:07.503","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","3058425","Week M-12 (1)","17","Date of Visit","33614656","0","21 May 2026 18:26:28:003","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 18:26:28.003","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2606700","Screening","3","Date of Visit","28012993","0","09 Mar 2026 17:05:12:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 17:05:12.613","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2707182","Week I-0 (1)","7","Date of Visit","29138200","0","17 Nov 2025 20:05:08:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251117 20:05:08.217","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2707278","Week I-2 (1)","8","Date of Visit","29139163","0","02 Dec 2025 21:35:21:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251202 21:35:21.617","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2788581","Week I-4 (1)","9","Date of Visit","29988719","0","17 Dec 2025 22:51:23:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251217 22:51:23.897","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2841026","Week I-8 (1)","10","Date of Visit","30698720","0","20 Jan 2026 18:55:40:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 JAN 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 18:55:40.533","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2888972","Week I-12 (1)","11","Date of Visit","31320220","0","18 Mar 2026 18:20:31:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 18:20:31.647","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2977772","Week M-4 (1)","15","Date of Visit","32539438","0","11 Mar 2026 19:02:32:187","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 19:02:32.187","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","3002433","Week M-8 (1)","16","Date of Visit","32882632","0","09 Apr 2026 20:39:37:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 20:39:37.130","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","3058426","Week M-12 (1)","17","Date of Visit","33614664","0","21 May 2026 18:13:56:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 18:13:56.680","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2788622","Unscheduled 20251015","59","Date of Visit","31783209","0","17 Feb 2026 23:46:51:650","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","15 OCT 2025","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA AND RETEST FOR TB QUANTIFERON","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 23:46:51.650","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","3041553","Unscheduled 20260123","59","Date of Visit","33393123","0","30 Mar 2026 23:35:55:743","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","23 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SUBJECT RETURNED TO CLINIC WITH STOOL SAMPLES FOR VISIT I-4 INDUCTION WEEK 4.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 23:35:55.743","","" +"USA","8844","DD5-US10001","Clinnova Research","181084","US100012004","6330","2621315","Screening","3","Date of Visit","28176162","0","16 Dec 2025 18:17:23:580","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251216 18:17:23.580","","" +"USA","8844","DD5-US10001","Clinnova Research","186310","US100012005","6330","2717465","Screening","3","Date of Visit","29242945","0","28 Jan 2026 18:41:05:150","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 18:41:05.150","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2843914","Screening","3","Date of Visit","30732535","0","20 Jan 2026 18:40:20:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 18:40:20.337","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2880400","Week I-0 (1)","7","Date of Visit","31218653","0","20 Jan 2026 18:40:08:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260120 18:40:08.313","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2885954","Week I-2 (1)","8","Date of Visit","31284155","0","27 Jan 2026 21:04:10:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260127 21:04:10.697","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2899436","Week I-4 (1)","9","Date of Visit","31457281","0","04 Mar 2026 21:39:11:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 21:39:11.320","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2977747","Week I-8 (1)","10","Date of Visit","32539278","0","06 Apr 2026 16:53:03:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260406 16:53:03.583","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","3050232","Week I-12 (1)","11","Date of Visit","33509620","0","09 Apr 2026 20:29:56:173","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 20:29:56.173","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","3058424","Week M-4 (1)","15","Date of Visit","33614549","0","11 May 2026 19:05:44:523","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 19:05:44.523","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","2927436","Screening","3","Date of Visit","31829209","0","10 Feb 2026 23:29:00:907","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260210 23:29:00.907","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","3026904","Week I-0 (1)","7","Date of Visit","33200481","0","25 Mar 2026 21:23:11:393","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 21:23:11.393","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","3033916","Week I-2 (1)","8","Date of Visit","33290476","0","22 Apr 2026 22:04:13:950","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 22:04:13.950","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","3086238","Week I-4 (1)","9","Date of Visit","34026490","0","22 Apr 2026 22:13:43:273","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 22:13:43.273","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","3086247","Week I-8 (1)","10","Date of Visit","34026554","0","21 May 2026 18:46:55:043","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 18:46:55.043","","" +"USA","8844","DD5-US10001","Clinnova Research","196664","US100012008","6330","2958318","Screening","3","Date of Visit","32292064","0","15 Apr 2026 20:12:52:073","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 20:12:52.073","","" +"USA","8844","DD5-US10001","Clinnova Research","211142","US100012009","6330","3199855","Screening","3","Date of Visit","35139085","0","18 May 2026 18:20:06:903","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 18:20:06.903","","" +"USA","8844","DD5-US10001","Clinnova Research","211359","US100012010","6330","3204416","Screening","3","Date of Visit","35202298","0","20 May 2026 18:25:44:790","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 18:25:44.790","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","2947166","Screening","3","Date of Visit","32121107","0","20 Feb 2026 18:01:47:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260220 18:01:47.980","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","3014605","Week I-0 (1)","7","Date of Visit","33046703","0","17 Mar 2026 22:24:21:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260317 22:24:21.153","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","3014846","Week I-2 (1)","8","Date of Visit","33050516","0","01 Apr 2026 16:53:35:083","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 16:53:35.083","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","3041339","Week I-4 (1)","9","Date of Visit","33450717","0","16 Apr 2026 16:20:53:727","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 16:20:53.727","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","3071604","Week I-8 (1)","10","Date of Visit","33805778","0","14 May 2026 23:57:34:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 23:57:34.183","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","2958674","Screening","3","Date of Visit","32296275","0","05 Mar 2026 12:25:59:847","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 12:25:59.847","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","3033490","Week I-0 (1)","7","Date of Visit","33285850","0","25 Mar 2026 19:04:04:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260325 19:04:04.237","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","3033705","Week I-2 (1)","8","Date of Visit","33288347","0","13 Apr 2026 19:05:28:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260413 19:05:28.237","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","3063080","Week I-4 (1)","9","Date of Visit","33671802","0","23 Apr 2026 19:12:52:017","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 19:12:52.017","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","3089784","Week I-8 (1)","10","Date of Visit","34085151","0","18 May 2026 23:34:26:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 23:34:26.757","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","198837","US100042003","6330","3005235","Screening","3","Date of Visit","32922437","0","14 Apr 2026 11:39:23:270","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 11:39:23.270","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","198837","US100042003","6330","3043755","Week I-0 (1)","7","Date of Visit","33418600","0","01 Apr 2026 16:56:10:717","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 16:56:10.717","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","198837","US100042003","6330","3045644","Week I-2 (1)","8","Date of Visit","33451147","0","16 Apr 2026 16:32:38:553","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 16:32:38.553","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","198837","US100042003","6330","3071612","Week I-4 (1)","9","Date of Visit","33805992","0","29 Apr 2026 00:56:40:243","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 00:56:40.243","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","200334","US100042004","6330","3036141","Screening","3","Date of Visit","33321461","0","26 Mar 2026 14:16:05:913","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 14:16:05.913","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","200334","US100042004","6330","3116013","Week I-0 (1)","7","Date of Visit","34385056","0","06 May 2026 15:13:13:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 15:13:13.830","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","200334","US100042004","6330","3135144","Week I-2 (1)","8","Date of Visit","34691478","0","13 May 2026 13:56:50:847","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 13:56:50.847","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","203911","US100042005","6330","3112730","Screening","3","Date of Visit","34331625","0","27 Apr 2026 18:42:17:520","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 18:42:17.520","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","203911","US100042005","6330","3199951","Week I-0 (1)","7","Date of Visit","35140044","0","22 May 2026 17:33:45:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 17:33:45.647","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","210929","US100042006","6330","3195534","Screening","3","Date of Visit","35077392","0","15 May 2026 20:36:31:950","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 20:36:31.950","","" +"USA","9686","DD5-US10009","Southern Star Research Institute, LLC","186010","US100092001","6330","2711418","Screening","3","Date of Visit","29182373","0","27 Jan 2026 14:58:20:660","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260127 14:58:20.660","","" +"USA","9668","DD5-US10010","Atrium Health","211352","US100102001","6330","3204209","Screening","3","Date of Visit","35199591","0","20 May 2026 15:44:01:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 15:44:01.730","","" +"USA","8842","DD5-US10012","Tyler Research Institute, LLC","201847","US100122001","6330","3065842","Screening","3","Date of Visit","33708370","0","20 Apr 2026 15:59:56:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 15:59:56.347","","" +"USA","8842","DD5-US10012","Tyler Research Institute, LLC","201847","US100122001","6330","3188745","Week I-0 (1)","7","Date of Visit","34979783","0","12 May 2026 19:06:46:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 19:06:46.657","","" +"USA","9786","DD5-US10016","GastroIntestinal Bioscience","191561","US100162001","6330","2849349","Screening","3","Date of Visit","30813864","0","11 Mar 2026 20:33:19:397","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260311 20:33:19.397","","" +"USA","9633","DD5-US10018","New York Gastroenterology Associates","191465","US100182001","6330","2846839","Screening","3","Date of Visit","30776995","0","17 Feb 2026 18:17:19:813","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 18:17:19.813","","" +"USA","9633","DD5-US10018","New York Gastroenterology Associates","201336","US100182002","6330","3055402","Screening","3","Date of Visit","33575431","0","13 May 2026 15:51:13:037","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 15:51:13.037","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2651813","Screening","3","Date of Visit","28505649","0","03 Nov 2025 19:01:44:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251103 19:01:44.160","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2825326","Week I-0 (1)","7","Date of Visit","30498760","0","15 Dec 2025 18:17:44:250","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251215 18:17:44.250","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2833638","Week I-2 (1)","8","Date of Visit","30609329","0","22 Dec 2025 16:04:39:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251222 16:04:39.677","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2849432","Week I-4 (1)","9","Date of Visit","30815285","0","07 Jan 2026 15:52:07:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260107 15:52:07.287","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2866678","Week I-8 (1)","10","Date of Visit","31048914","0","04 Feb 2026 15:54:56:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260204 15:54:56.857","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2915238","Week I-12 (1)","11","Date of Visit","31655542","0","06 Mar 2026 15:44:53:467","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260306 15:44:53.467","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2961633","Week M-4 (1)","15","Date of Visit","32336220","0","03 Apr 2026 15:08:17:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260403 15:08:17.940","","" +"USA","9640","DD5-US10021","Gastroenterology Associates of Tidewater","202470","US100212001","6330","3078301","Screening","3","Date of Visit","33906420","0","06 May 2026 14:41:34:917","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 14:41:34.917","","" +"USA","9640","DD5-US10021","Gastroenterology Associates of Tidewater","202470","US100212001","6330","3194625","Week I-0 (1)","7","Date of Visit","35064023","0","15 May 2026 20:29:15:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260515 20:29:15.440","","" +"USA","9640","DD5-US10021","Gastroenterology Associates of Tidewater","211243","US100212002","6330","3202069","Screening","3","Date of Visit","35171642","0","20 May 2026 17:50:09:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 17:50:09.337","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","194978","US100222001","6330","2924109","Screening","3","Date of Visit","31781890","0","18 Mar 2026 22:17:36:700","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 22:17:36.700","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199275","US100222002","6330","3014634","Screening","3","Date of Visit","33046971","0","18 Mar 2026 22:19:53:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 22:19:53.760","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199275","US100222002","6330","3116176","Week I-0 (1)","7","Date of Visit","34387224","0","30 Apr 2026 20:40:20:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260430 20:40:20.617","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199275","US100222002","6330","3125354","Week I-2 (1)","8","Date of Visit","34522263","0","12 May 2026 15:51:47:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 15:51:47.437","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199692","US100222003","6330","3023248","Screening","3","Date of Visit","33151951","0","20 Mar 2026 22:32:22:353","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260320 22:32:22.353","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199692","US100222003","6330","3112864","Week I-0 (1)","7","Date of Visit","34333155","0","29 Apr 2026 22:48:52:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260429 22:48:52.600","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199692","US100222003","6330","3119640","Week I-2 (1)","8","Date of Visit","34454917","0","12 May 2026 21:40:15:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 21:40:15.000","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199858","US100222004","6330","3026844","Screening","3","Date of Visit","33199513","0","23 Mar 2026 22:03:25:207","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 22:03:25.207","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","190795","US100232001","6330","2833396","Screening","3","Date of Visit","30606084","0","02 Feb 2026 19:03:57:193","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260202 19:03:57.193","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2893144","Screening","3","Date of Visit","31374118","0","16 Feb 2026 18:25:45:977","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 18:25:45.977","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2920821","Week I-0 (1)","7","Date of Visit","31735952","0","17 Feb 2026 18:48:53:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260217 18:48:53.867","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2942561","Week I-2 (1)","8","Date of Visit","32059360","0","26 Feb 2026 15:33:21:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 15:33:21.830","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2961150","Week I-4 (1)","9","Date of Visit","32330339","0","04 Mar 2026 20:07:28:820","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260304 20:07:28.820","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2977684","Week I-8 (1)","10","Date of Visit","32538408","0","09 Apr 2026 19:48:23:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 19:48:23.593","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","3058405","Week I-12 (1)","11","Date of Visit","33614087","0","05 May 2026 19:13:40:807","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 19:13:40.807","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","3005117","Unscheduled 20260218","59","Date of Visit","32920590","0","12 Mar 2026 18:37:15:870","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","18 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA NOT DRAWN AT I-0","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 18:37:15.870","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","2926840","Screening","3","Date of Visit","31821102","0","31 Mar 2026 15:15:40:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260331 15:15:40.727","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","2947558","Week I-0 (1)","7","Date of Visit","32127002","0","27 Feb 2026 18:00:17:197","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 18:00:17.197","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","2964117","Week I-2 (1)","8","Date of Visit","32362418","0","05 Mar 2026 19:27:59:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 19:27:59.237","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","2980739","Week I-4 (1)","9","Date of Visit","32576097","0","18 Mar 2026 17:39:24:597","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260318 17:39:24.597","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","3017486","Week I-8 (1)","10","Date of Visit","33085717","0","24 Apr 2026 18:50:16:470","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 18:50:16.470","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","3095996","Week I-12 (1)","11","Date of Visit","34152991","0","21 May 2026 18:20:30:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 18:20:30.577","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","2997864","Screening","3","Date of Visit","32821450","0","15 Apr 2026 17:29:41:847","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 17:29:41.847","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","3067874","Week I-0 (1)","7","Date of Visit","33743847","0","23 Apr 2026 17:48:53:087","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 17:48:53.087","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","3089644","Week I-2 (1)","8","Date of Visit","34082444","0","20 May 2026 18:53:14:343","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 18:53:14.343","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","3204440","Week I-4 (1)","9","Date of Visit","35202658","0","20 May 2026 18:54:00:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260520 18:54:00.927","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","3207426","Unscheduled 20260310","59","Date of Visit","35239749","0","21 May 2026 17:31:22:797","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","10 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","INADVERTENTLY DREW DNA LAB AT SCREENING VISIT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 17:31:22.797","","" +"USA","9656","DD5-US10027","Florida Research Center Inc.","185266","US100272001","6330","2698166","Screening","3","Date of Visit","29040433","0","22 Jan 2026 13:54:21:787","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 13:54:21.787","","" +"USA","9656","DD5-US10027","Florida Research Center Inc.","194732","US100272002","6330","2918790","Screening","3","Date of Visit","31708503","0","16 Feb 2026 19:54:24:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 19:54:24.570","","" +"USA","9988","DD5-US10039","Inflammatory Bowel Disease Center at NYU Langone","210471","US100392001","6330","3186161","Screening","3","Date of Visit","34939045","0","11 May 2026 15:32:07:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 15:32:07.880","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","193204","US100462001","6330","2886071","Screening","3","Date of Visit","31285075","0","20 Feb 2026 16:16:57:027","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260220 16:16:57.027","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","193925","US100462002","6330","2901422","Screening","3","Date of Visit","31481431","0","16 Feb 2026 16:04:46:660","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 16:04:46.660","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","194556","US100462003","6330","2915247","Screening","3","Date of Visit","31655701","0","09 Feb 2026 21:30:22:567","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260209 21:30:22.567","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","2927334","Screening","3","Date of Visit","31827777","0","26 Feb 2026 19:06:39:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 19:06:39.787","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3026898","Week I-0 (1)","7","Date of Visit","33200390","0","23 Mar 2026 20:16:03:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 20:16:03.607","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3026907","Week I-2 (1)","8","Date of Visit","33200530","0","07 Apr 2026 21:02:23:493","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260407 21:02:23.493","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3052566","Week I-4 (1)","9","Date of Visit","33539884","0","27 Apr 2026 21:21:42:053","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 21:21:42.053","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3082165","Induction Early Discontinuation (1)","12","Date of Visit","33964913","0","23 Apr 2026 19:33:20:110","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 19:33:20.110","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3112964","Induction Safety Follow Up (1)","13","Date of Visit","34334335","0","21 May 2026 18:54:45:620","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260521 18:54:45.620","","" +"USA","9689","DD5-US10049","Gastroenterolgy Associates of Central GA","191145","US100492001","6330","2840201","Screening","3","Date of Visit","30688410","0","06 Feb 2026 14:47:07:273","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260206 14:47:07.273","","" +"USA","9689","DD5-US10049","Gastroenterolgy Associates of Central GA","199536","US100492002","6330","3020155","Screening","3","Date of Visit","33115912","0","15 Apr 2026 13:50:48:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 13:50:48.763","","" +"USA","10031","DD5-US10054","University Gastroenterology","200850","US100542001","6330","3045432","Screening","3","Date of Visit","33446964","0","01 Apr 2026 14:28:42:797","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","01 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260401 14:28:42.797","","" +"USA","10031","DD5-US10054","University Gastroenterology","202783","US100542002","6330","3085378","Screening","3","Date of Visit","34014641","0","22 Apr 2026 14:24:06:233","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260422 14:24:06.233","","" +"USA","10028","DD5-US10057","TLC Clinical Research Inc","198940","US100572001","6330","3007560","Screening","3","Date of Visit","32953106","0","14 Apr 2026 22:39:05:960","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260414 22:39:05.960","","" +"USA","10028","DD5-US10057","TLC Clinical Research Inc","200216","US100572002","6330","3033819","Screening","3","Date of Visit","33289495","0","06 May 2026 23:05:34:023","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260506 23:05:34.023","","" +"USA","9628","DD5-US10059","Om Research LLC","186304","US100592001","6330","2717332","Screening","3","Date of Visit","29241366","0","31 Dec 2025 01:15:41:757","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251231 01:15:41.757","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","179807","US100632001","6330","2595340","Screening","3","Date of Visit","27876840","0","28 Oct 2025 15:04:40:747","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251028 15:04:40.747","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","183786","US100632002","6330","2670830","Screening","3","Date of Visit","28708536","0","24 Nov 2025 20:09:46:563","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251124 20:09:46.563","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2681811","Screening","3","Date of Visit","28835217","0","07 Nov 2025 15:51:52:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251107 15:51:52.940","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2806154","Week I-0 (1)","7","Date of Visit","30251922","0","05 Dec 2025 17:14:46:273","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251205 17:14:46.273","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2806569","Week I-2 (1)","8","Date of Visit","30259206","0","18 Dec 2025 18:02:37:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20251218 18:02:37.247","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2843814","Week I-4 (1)","9","Date of Visit","30731239","0","06 Jan 2026 17:30:43:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260106 17:30:43.340","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2864645","Week I-8 (1)","10","Date of Visit","31024145","0","03 Feb 2026 14:37:28:363","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260203 14:37:28.363","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2912596","Week I-12 (1)","11","Date of Visit","31625298","0","27 Feb 2026 16:03:19:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260227 16:03:19.163","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2963995","Week M-4 (1)","15","Date of Visit","32361551","0","27 Mar 2026 12:48:20:357","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 12:48:20.357","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","3038237","Week M-8 (1)","16","Date of Visit","33351966","0","24 Apr 2026 14:25:34:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 14:25:34.727","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","3093378","Week M-12 (1)","17","Date of Visit","34121848","0","22 May 2026 13:16:07:997","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 13:16:07.997","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","196543","US100632004","6330","2955839","Screening","3","Date of Visit","32252993","0","26 Feb 2026 18:29:51:517","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 18:29:51.517","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","200006","US100632005","6330","3029530","Screening","3","Date of Visit","33232557","0","24 Mar 2026 15:54:58:053","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260324 15:54:58.053","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","200006","US100632005","6330","3080881","Week I-0 (1)","7","Date of Visit","33947905","0","21 Apr 2026 14:45:03:337","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260421 14:45:03.337","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","200006","US100632005","6330","3081537","Week I-2 (1)","8","Date of Visit","33956504","0","05 May 2026 17:13:45:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260505 17:13:45.810","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","200006","US100632005","6330","3132445","Week I-4 (1)","9","Date of Visit","34638671","0","19 May 2026 14:17:29:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 14:17:29.563","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","200651","US100642001","6330","3041446","Screening","3","Date of Visit","33391653","0","15 Apr 2026 06:43:32:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260415 06:43:32.287","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","200651","US100642001","6330","3085233","Week I-0 (1)","7","Date of Visit","34013193","0","27 Apr 2026 14:31:22:310","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260427 14:31:22.310","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","200651","US100642001","6330","3112485","Week I-2 (1)","8","Date of Visit","34327189","0","11 May 2026 07:11:20:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260511 07:11:20.853","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","201706","US100642002","6330","3062759","Screening","3","Date of Visit","33666643","0","07 May 2026 09:57:23:553","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 09:57:23.553","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","201706","US100642002","6330","3138081","Week I-0 (1)","7","Date of Visit","34741682","0","12 May 2026 11:13:50:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260512 11:13:50.367","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","201706","US100642002","6330","3188308","Week I-2 (1)","8","Date of Visit","34973270","0","22 May 2026 09:52:46:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260522 09:52:46.927","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","210913","US100642003","6330","3194970","Screening","3","Date of Visit","35068365","0","19 May 2026 12:01:38:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 12:01:38.497","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193186","US100772001","6330","2885663","Screening","3","Date of Visit","31280736","0","02 Mar 2026 14:32:01:000","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260302 14:32:01.000","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","2893371","Screening","3","Date of Visit","31377506","0","18 May 2026 22:38:07:733","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 22:38:07.733","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","2963961","Week I-0 (1)","7","Date of Visit","32361097","0","03 Mar 2026 14:51:41:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260303 14:51:41.453","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","2974852","Week I-2 (1)","8","Date of Visit","32502299","0","18 May 2026 22:27:49:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260518 22:27:49.497","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","3038283","Week I-4 (1)","9","Date of Visit","33352441","0","27 Mar 2026 13:15:34:947","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 13:15:34.947","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","3038284","Week I-8 (1)","10","Date of Visit","33352460","0","24 Apr 2026 13:47:25:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260424 13:47:25.123","","" +"USA","9624","DD5-US10081","The Oregon Clinic","189784","US100812001","6330","2811837","Screening","3","Date of Visit","30327153","0","26 Jan 2026 21:53:28:060","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260126 21:53:28.060","","" +"USA","9624","DD5-US10081","The Oregon Clinic","193369","US100812002","6330","2889006","Screening","3","Date of Visit","31320511","0","24 Feb 2026 21:06:53:203","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260224 21:06:53.203","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","2942322","Screening","3","Date of Visit","32055345","0","14 May 2026 18:58:05:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 18:58:05.400","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","3036675","Week I-0 (1)","7","Date of Visit","33328397","0","27 Mar 2026 02:19:11:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260327 02:19:11.180","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","3036950","Week I-2 (1)","8","Date of Visit","33331788","0","09 Apr 2026 20:45:43:803","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 20:45:43.803","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","3058431","Induction Early Discontinuation (1)","12","Date of Visit","33614762","0","09 Apr 2026 20:46:40:950","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","SUBJECT REFUSES TO RETURN.","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260409 20:46:40.950","","" +"USA","9624","DD5-US10081","The Oregon Clinic","210800","US100812004","6330","3192643","Screening","3","Date of Visit","35032295","0","13 May 2026 23:29:58:793","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260513 23:29:58.793","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","2955637","Screening","3","Date of Visit","32250275","0","25 Feb 2026 01:13:42:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260225 01:13:42.667","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","3041182","Week I-0 (1)","7","Date of Visit","33388170","0","30 Mar 2026 18:02:01:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260330 18:02:01.553","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","3041304","Week I-2 (1)","8","Date of Visit","33390015","0","20 Apr 2026 16:17:45:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 16:17:45.877","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","3078585","Week I-4 (1)","9","Date of Visit","33910412","0","28 Apr 2026 18:22:42:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260428 18:22:42.307","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","3125350","Unscheduled 20260430","59","Date of Visit","34522174","0","01 May 2026 12:07:48:077","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","30 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","ELEVATED CK LABS. PER PI REPEAT LABS","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260501 12:07:48.077","","" +"USA","9257","DD5-US10089","Cotton O'Neil Digestive Health Center","196814","US100892001","6330","2961395","Screening","3","Date of Visit","32332882","0","12 Mar 2026 17:41:50:597","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260312 17:41:50.597","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2864713","Screening","3","Date of Visit","31024768","0","13 Jan 2026 20:29:43:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260113 20:29:43.887","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2892993","Week I-0 (1)","7","Date of Visit","31372535","0","22 Jan 2026 19:24:06:190","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260122 19:24:06.190","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2893670","Week I-2 (1)","8","Date of Visit","31380964","0","19 Feb 2026 20:48:20:357","Tier 1","SDVTier","No","Did this visit occur?","CONTINUING","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","SUBJECT WAS NOT AVAILABLE FOR THIS VISIT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 20:48:20.357","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2947652","Week I-4 (1)","9","Date of Visit","32127999","0","19 Feb 2026 20:49:09:423","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260219 20:49:09.423","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2947653","Week I-8 (1)","10","Date of Visit","32128015","0","23 Mar 2026 18:23:06:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260323 18:23:06.787","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","3026774","Week I-12 (1)","11","Date of Visit","33198850","0","16 Apr 2026 19:38:33:957","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260416 19:38:33.957","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","3072218","Week M-4 (1)","15","Date of Visit","33814813","0","14 May 2026 17:51:36:487","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260514 17:51:36.487","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","2886116","Screening","3","Date of Visit","31285393","0","28 Jan 2026 18:15:49:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260128 18:15:49.053","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","2961335","Week I-0 (1)","7","Date of Visit","32332242","0","26 Feb 2026 21:57:42:470","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260226 21:57:42.470","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","2961671","Week I-2 (1)","8","Date of Visit","32336453","0","16 Mar 2026 20:47:03:190","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260316 20:47:03.190","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","3010980","Week I-4 (1)","9","Date of Visit","32998022","0","26 Mar 2026 19:59:27:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260326 19:59:27.050","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","3036768","Week I-8 (1)","10","Date of Visit","33329366","0","20 Apr 2026 16:07:05:730","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260420 16:07:05.730","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","3078559","Week I-12 (1)","11","Date of Visit","33910119","0","19 May 2026 20:30:50:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260519 20:30:50.043","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","2980181","Screening","3","Date of Visit","32569435","0","05 Mar 2026 20:58:16:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260305 20:58:16.527","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","3058149","Week I-0 (1)","7","Date of Visit","33609892","0","10 Apr 2026 02:44:50:013","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260410 02:44:50.013","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","3058596","Week I-2 (1)","8","Date of Visit","33617441","0","23 Apr 2026 18:39:15:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260423 18:39:15.323","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","3089744","Week I-4 (1)","9","Date of Visit","34084368","0","07 May 2026 19:43:24:270","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260507 19:43:24.270","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","2995372","Unscheduled 20260309","59","Date of Visit","32788335","0","09 Mar 2026 20:17:54:003","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260309 20:17:54.003","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","2933629","Screening","3","Date of Visit","31923152","0","16 Feb 2026 20:41:26:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260216 20:41:26.127","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","2988387","Week I-0 (1)","7","Date of Visit","32691620","0","10 Mar 2026 13:19:10:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260310 13:19:10.803","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","2997834","Week I-2 (1)","8","Date of Visit","32821283","0","19 Mar 2026 19:46:57:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260319 19:46:57.483","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","3020478","Week I-4 (1)","9","Date of Visit","33120089","0","02 Apr 2026 16:28:00:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260402 16:28:00.600","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","3047459","Week I-8 (1)","10","Date of Visit","33477265","0","04 May 2026 15:26:38:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:22:55.933","GMT","20260504 15:26:38.940","","" diff --git a/Medidata/downloads/2026-05-25_10-30_EDC_UCO3001_ALL_TrialDispositionCompletion-Discontinuation_DataListing.csv b/Medidata/downloads/2026-05-25_10-30_EDC_UCO3001_ALL_TrialDispositionCompletion-Discontinuation_DataListing.csv new file mode 100644 index 0000000..7f9308d --- /dev/null +++ b/Medidata/downloads/2026-05-25_10-30_EDC_UCO3001_ALL_TrialDispositionCompletion-Discontinuation_DataListing.csv @@ -0,0 +1,262 @@ +"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" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","197447","AR100012001","6330","2974778","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33956658","0","27 Apr 2026 17:05:44:047","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","3 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260427 17:05:44.047","","" +"ARG","9172","DD5-AR10006","GEDYT","191642","AR100062001","6330","2851778","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31627490","0","04 Feb 2026 13:52:32:357","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260204 13:52:32.357","","" +"ARG","9172","DD5-AR10006","GEDYT","194445","AR100062002","6330","2912678","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32251629","0","09 Mar 2026 12:39:39:493","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Other","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","SUBJECT WAS RANDOMIZED IN ERROR AND WAS NOT DOSED","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260309 12:39:39.493","","" +"ARG","9172","DD5-AR10006","GEDYT","196787","AR100062003","6330","2960886","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33606693","0","09 Apr 2026 14:15:17:657","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260409 14:15:17.657","","" +"ARG","9172","DD5-AR10006","GEDYT","197460","AR100062004","6330","2975083","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33606760","0","09 Apr 2026 14:16:47:543","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260409 14:16:47.543","","" +"ARG","9172","DD5-AR10006","GEDYT","199250","AR100062005","6330","3014097","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33323328","0","09 Apr 2026 14:18:00:477","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260409 14:18:00.477","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","2908963","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35202201","0","20 May 2026 18:16:51:867","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260520 18:16:51.867","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200627","AR100181002","6330","3040987","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34388760","0","11 May 2026 14:09:50:497","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260511 14:09:50.497","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2864977","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34993689","0","20 May 2026 05:46:45:380","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","13 MAY 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Adverse Event","What was the subjects primary reason for trial discontinuation/completion?","#009 > 13MAY2026 > ACUTE SEVERE ULCERATIVE COLITIS","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260520 05:46:45.380","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","195930","AU100012002","6330","2942931","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32408616","0","03 Mar 2026 04:51:41:993","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 FEB 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260303 04:51:41.993","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","190113","AU100022002","6330","2817862","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31084362","0","04 Feb 2026 03:05:59:867","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260204 03:05:59.867","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","2977836","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34643436","0","06 May 2026 04:11:32:157","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","To pursue alternative treatment","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260506 04:11:32.157","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","189868","AU100092002","6330","2813953","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32545886","0","19 Mar 2026 06:16:01:317","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260319 06:16:01.317","","" +"AUS","9637","DD5-AU10012","John Hunter Hospital","196826","AU100122001","6330","2961648","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33542667","0","08 Apr 2026 02:10:46:260","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260408 02:10:46.260","","" +"AUS","9637","DD5-AU10012","John Hunter Hospital","201856","AU100122002","6330","3066179","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33713740","0","15 Apr 2026 03:55:23:813","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260415 03:55:23.813","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","196746","BE100012002","6330","2960079","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33490373","0","03 Apr 2026 13:42:02:800","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260403 13:42:02.800","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2890006","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34935835","0","11 May 2026 13:22:12:433","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260511 13:22:12.433","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","200603","BR100182001","6330","3040674","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34742663","0","07 May 2026 17:51:16:830","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260507 17:51:16.830","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","201067","BR100182003","6330","3049796","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34743461","0","07 May 2026 18:49:55:777","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260507 18:49:55.777","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","197670","BR100222003","6330","2979591","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34745179","0","07 May 2026 20:35:20:980","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260507 20:35:20.980","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","210612","BR100222009","6330","3189097","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35140234","0","18 May 2026 21:18:26:477","Tier 5","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260518 21:18:26.477","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","197782","BR100302001","6330","2981970","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33419456","0","09 Apr 2026 12:24:45:730","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260409 12:24:45.730","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","198826","BR100302002","6330","3005033","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34025418","0","15 May 2026 18:25:47:277","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260515 18:25:47.277","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","198515","CA100042002","6330","2998651","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33911633","0","20 Apr 2026 17:26:41:330","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","1 APR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260420 17:26:41.330","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","187326","CA100062001","6330","2762649","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31027852","0","08 Jan 2026 16:03:42:053","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260108 16:03:42.053","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2904879","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32836094","0","05 May 2026 18:54:55:527","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","02 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260505 18:54:55.527","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","195441","CA100072002","6330","2933584","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32998072","0","16 Mar 2026 20:52:13:253","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","09 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260316 20:52:13.253","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","2995389","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34573973","0","04 May 2026 17:35:26:247","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260504 17:35:26.247","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","187054","CA100082001","6330","2756460","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31098928","0","09 Jan 2026 16:15:44:767","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260109 16:15:44.767","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","2942114","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33451065","0","19 May 2026 13:04:53:237","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","29 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260519 13:04:53.237","","" +"CAN","9724","DD5-CA10012","West GTA Endoscopy","189365","CA100122001","6330","2802142","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34327348","0","27 Apr 2026 17:39:52:487","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260427 17:39:52.487","","" +"CHE","9510","DD5-CH10003","HOCH Health Ostschweiz Kantonsspital St.Gallen","202541","CH100032001","6330","3079992","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34378885","0","28 Apr 2026 14:19:02:857","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 APR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260428 14:19:02.857","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","187091","CN100012001","6330","2757152","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31017082","0","06 Jan 2026 11:35:34:877","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260106 11:35:34.877","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2789183","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33308304","0","27 Apr 2026 07:36:54:690","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260427 07:36:54.690","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2826665","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34311367","0","22 May 2026 03:36:37:540","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Lack of Improvement","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260522 03:36:37.540","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2863172","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34400880","0","11 May 2026 09:01:24:457","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","22 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Lack of Improvement","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260511 09:01:24.457","","" +"CHN","9577","DD5-CN10004","The Second Affiliated Hospital of Guangzhou Medical University","192890","CN100042001","6330","2879452","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32374479","0","02 Mar 2026 08:39:13:407","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260302 08:39:13.407","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199434","CN100132002","6330","3017916","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35264187","0","22 May 2026 08:51:33:267","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260522 08:51:33.267","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","191658","CN100152001","6330","2852188","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31033948","0","13 Feb 2026 07:01:47:107","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","31 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260213 07:01:47.107","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","193486","CN100222001","6330","2891681","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31589214","0","03 Feb 2026 03:36:52:420","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 JAN 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260203 03:36:52.420","","" +"CHN","9529","DD5-CN10023","Meihekou Central Hospital","194579","CN100232001","6330","2915695","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33054868","0","18 Mar 2026 08:48:33:040","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260318 08:48:33.040","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","197147","CN100242002","6330","2968149","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33694412","0","14 Apr 2026 10:22:18:690","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","31 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260414 10:22:18.690","","" +"CHN","9748","DD5-CN10025","Heilongjiang Provincial Hospital","199143","CN100252001","6330","3011827","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34392489","0","29 Apr 2026 09:13:43:840","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260429 09:13:43.840","","" +"CHN","9748","DD5-CN10025","Heilongjiang Provincial Hospital","200525","CN100252002","6330","3039851","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33691788","0","29 Apr 2026 05:28:02:010","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260429 05:28:02.010","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","194314","CN100272002","6330","2909915","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33348431","0","27 Mar 2026 10:34:15:530","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260327 10:34:15.530","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193488","CN100312001","6330","2891733","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32414575","0","03 Mar 2026 07:37:00:573","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","13 FEB 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260303 07:37:00.573","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","2897743","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35153700","0","19 May 2026 09:08:21:077","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260519 09:08:21.077","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193388","CN100332002","6330","2889344","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31588933","0","08 Feb 2026 07:39:21:637","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260208 07:39:21.637","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","199870","CN100361001","6330","3027060","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33430088","0","01 Apr 2026 05:17:59:507","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","28 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260401 05:17:59.507","","" +"CHN","9189","DD5-CN10039","The First Affiliated Hospital of Ningbo University","191584","CN100392001","6330","2850008","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30987511","0","05 Jan 2026 08:17:50:930","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260105 08:17:50.930","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880183","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32591990","0","06 Mar 2026 10:59:27:423","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260306 10:59:27.423","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894250","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32360263","0","27 Feb 2026 14:27:27:820","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260227 14:27:27.820","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197226","CZ100222004","6330","2969803","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33232142","0","24 Mar 2026 12:12:25:007","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260324 12:12:25.007","","" +"DEU","9561","DD5-DE10001","Universitaetsklinik Erlangen","203843","DE100012001","6330","3111437","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35209327","0","21 May 2026 05:38:49:097","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","13 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260521 05:38:49.097","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","202869","DE100102004","6330","3087548","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35094383","0","15 May 2026 11:00:25:827","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260515 11:00:25.827","","" +"DEU","9471","DD5-DE10023","Medizinisches Versorgungszentrum (MVZ) Dachau","202679","DE100232001","6330","3083103","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35222600","0","21 May 2026 10:21:57:130","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260521 10:21:57.130","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","193876","DE100262001","6330","2900206","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32562692","0","05 Mar 2026 12:58:51:377","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260305 12:58:51.377","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","193965","DE100262002","6330","2902436","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32562807","0","05 Mar 2026 13:02:38:880","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260305 13:02:38.880","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","194053","DE100262003","6330","2904528","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32562913","0","05 Mar 2026 13:10:37:917","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260305 13:10:37.917","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","194933","DE100262004","6330","2923385","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33726581","0","15 Apr 2026 10:03:28:823","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260415 10:03:28.823","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2850598","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34081002","0","07 May 2026 14:49:09:607","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","22 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260507 14:49:09.607","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","193890","ES100042002","6330","2900487","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32532597","0","04 Mar 2026 14:53:14:403","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260304 14:53:14.403","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","195830","ES100042003","6330","2940858","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32532496","0","04 Mar 2026 14:50:50:070","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 FEB 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260304 14:50:50.070","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","199794","ES100112002","6330","3025358","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33537584","0","09 Apr 2026 10:09:47:933","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260409 10:09:47.933","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","198403","FR100012001","6330","2996658","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35129073","0","18 May 2026 12:04:18:087","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260518 12:04:18.087","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","202860","FR100012002","6330","3087338","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35159205","0","19 May 2026 10:48:12:567","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260519 10:48:12.567","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","189970","FR100022001","6330","2815038","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31671230","0","05 Feb 2026 13:25:47:180","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","5 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260205 13:25:47.180","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2831075","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31387814","0","05 Mar 2026 09:34:43:407","Tier 5","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","18 FEB 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Adverse Event","What was the subjects primary reason for trial discontinuation/completion?","#001 > 21JAN2026 > WORSENING OF UC","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260305 09:34:43.407","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","190687","FR100052001","6330","2831618","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31343576","0","21 Jan 2026 13:47:40:633","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260121 13:47:40.633","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","2922312","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33609361","0","09 Apr 2026 15:49:23:623","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260409 15:49:23.623","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195418","FR100052003","6330","2933108","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32986981","0","16 Mar 2026 13:19:58:750","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260316 13:19:58.750","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","2940744","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33636092","0","10 Apr 2026 15:57:07:707","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260410 15:57:07.707","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","191747","FR100072001","6330","2853909","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31733505","0","06 Feb 2026 14:13:52:097","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260206 14:13:52.097","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","196329","FR100072002","6330","2951494","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32992652","0","16 Mar 2026 15:40:11:127","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260316 15:40:11.127","","" +"FRA","9121","DD5-FR10010","CHU de Clermont Ferrand - Site Estaing","193256","FR100102001","6330","2886977","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32531934","0","04 Mar 2026 14:21:30:750","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260304 14:21:30.750","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","192383","FR100112003","6330","2868302","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31594114","0","03 Feb 2026 08:26:43:040","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 JAN 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260203 08:26:43.040","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","200320","FR100122002","6330","3035851","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34891368","0","11 May 2026 10:09:07:020","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","8 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260511 10:09:07.020","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2846487","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34928682","0","11 May 2026 11:47:27:707","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260511 11:47:27.707","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2880417","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33989081","0","20 May 2026 13:21:32:287","Tier 5","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260520 13:21:32.287","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","196428","GB100012001","6330","2953503","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33958862","0","21 Apr 2026 16:11:51:260","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260421 16:11:51.260","","" +"GBR","8955","DD5-GB10002","Fairfield General Hospital","192792","GB100022001","6330","2877316","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32823513","0","18 Mar 2026 15:46:13:887","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260318 15:46:13.887","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","198792","GB100052001","6330","3004069","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33703152","0","14 Apr 2026 13:40:30:687","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","01 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260414 13:40:30.687","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","198475","GB100082002","6330","2997710","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33701017","0","14 Apr 2026 12:33:17:737","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260414 12:33:17.737","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","192804","GB100132001","6330","2877533","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33179373","0","23 Mar 2026 10:06:10:283","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260323 10:06:10.283","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","201143","GR100012002","6330","3051292","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35269672","0","22 May 2026 11:28:59:247","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260522 11:28:59.247","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191034","GR100032001","6330","2837753","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31583434","0","03 Feb 2026 09:44:20:980","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260203 09:44:20.980","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","196579","HU100012003","6330","2956651","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33706974","0","20 Apr 2026 15:56:50:787","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260420 15:56:50.787","","" +"HUN","9096","DD5-HU10003","Pannónia Magánorvosi Centrum Kft","197620","HU100032001","6330","2978343","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33373653","0","30 Mar 2026 08:55:10:083","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260330 08:55:10.083","","" +"HUN","9858","DD5-HU10011","Vasutegeszsegugyi Nonprofit Kozhasznu Kft","194650","HU100112001","6330","2916965","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33505881","0","10 Apr 2026 16:56:26:457","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260410 16:56:26.457","","" +"HUN","9858","DD5-HU10011","Vasutegeszsegugyi Nonprofit Kozhasznu Kft","195168","HU100112002","6330","2928478","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33505959","0","10 Apr 2026 16:58:30:613","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260410 16:58:30.613","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","184344","IL100032001","6330","2683307","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30980213","0","10 Feb 2026 17:35:31:927","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260210 17:35:31.927","","" +"ISR","9803","DD5-IL10006","Bnai Zion Medical Center","192555","IL100062001","6330","2871927","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31415624","0","26 Jan 2026 07:49:20:110","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260126 07:49:20.110","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200687","IN100072003","6330","3041979","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34703059","0","08 May 2026 06:57:10:480","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","5 MAY 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260508 06:57:10.480","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","202365","IN100082004","6330","3076339","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34995603","0","13 May 2026 06:08:08:423","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","04 MAY 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","To pursue alternative treatment","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260513 06:08:08.423","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","198766","IT100042001","6330","3003372","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34716126","0","19 May 2026 14:25:07:987","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260519 14:25:07.987","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","199328","IT100042002","6330","3015726","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34327375","0","27 Apr 2026 14:38:54:297","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260427 14:38:54.297","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","200107","IT100042003","6330","3031639","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35166844","0","19 May 2026 14:26:17:523","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260519 14:26:17.523","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","201982","IT100042005","6330","3069091","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35166932","0","19 May 2026 14:35:34:183","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260519 14:35:34.183","","" +"ITA","9205","DD5-IT10011","Azienda Ospedaliera San Camillo-Forlanini","196707","IT100112001","6330","2959280","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32880182","0","31 Mar 2026 11:37:54:360","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260331 11:37:54.360","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","2894335","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35087392","0","15 May 2026 09:22:24:500","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260515 09:22:24.500","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","187078","JP100052002","6330","2756963","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31196083","0","28 Jan 2026 10:27:21:203","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260128 10:27:21.203","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","196944","JP100082003","6330","2964302","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33430101","0","01 Apr 2026 05:17:27:757","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 MAR 2026","Disposition Date","Other","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","USED ADT DURING THE SCREENING PERIOD.","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260401 05:17:27.757","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3052657","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35154113","0","19 May 2026 09:13:52:503","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260519 09:13:52.503","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","185807","JP100102002","6330","2707420","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","29736606","0","28 Nov 2025 01:03:59:320","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20251128 01:03:59.320","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2831049","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31635706","0","25 Mar 2026 02:48:55:513","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","13 FEB 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260325 02:48:55.513","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2880819","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35110297","0","18 May 2026 02:43:49:777","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260518 02:43:49.777","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","194357","JP100102007","6330","2910741","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32793896","0","10 Mar 2026 08:06:52:490","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260310 08:06:52.490","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","183886","JP100132002","6330","2672752","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30267999","0","08 Dec 2025 00:55:15:767","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20251208 00:55:15.767","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","184175","JP100132003","6330","2679543","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","28853484","0","28 Nov 2025 05:21:22:540","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","7 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20251128 05:21:22.540","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","192340","JP100182001","6330","2867223","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31748598","0","09 Feb 2026 05:48:41:420","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","09 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260209 05:48:41.420","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","193223","JP100182002","6330","2886387","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31662794","0","05 Feb 2026 01:58:56:250","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","4 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260205 01:58:56.250","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2830724","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34524312","0","01 May 2026 05:16:33:540","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260501 05:16:33.540","","" +"JPN","9113","DD5-JP10021","Takagi Clinic","199104","JP100212001","6330","3011113","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33006814","0","14 Apr 2026 06:08:00:857","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260414 06:08:00.857","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","182603","JP100222001","6330","2648918","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30543330","0","12 Dec 2025 07:10:47:443","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","5 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20251212 07:10:47.443","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2783565","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33052675","0","31 Mar 2026 08:59:39:553","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","31 MAR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260331 08:59:39.553","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198036","JP100532001","6330","2988739","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33292826","0","26 Mar 2026 02:48:01:293","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260326 02:48:01.293","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198533","JP100532002","6330","2999042","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33713348","0","15 Apr 2026 05:37:44:100","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260415 05:37:44.100","","" +"JPN","9073","DD5-JP10053","Takano Hospital","211022","JP100532005","6330","3197674","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35249059","0","22 May 2026 06:53:40:803","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260522 06:53:40.803","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","2952470","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33313495","0","24 Apr 2026 07:17:12:627","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260424 07:17:12.627","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","195133","KR100052001","6330","2927788","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32544561","0","05 Mar 2026 06:17:58:577","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260305 06:17:58.577","","" +"KOR","9331","DD5-KR10006","Kyung Hee University Hospital","199867","KR100062001","6330","3027021","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34950766","0","12 May 2026 01:59:53:367","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260512 01:59:53.367","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197473","KR100112003","6330","2975407","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33338945","0","27 Mar 2026 06:43:58:373","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260327 06:43:58.373","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","198528","MY100012004","6330","2998941","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34888517","0","11 May 2026 08:03:24:800","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260511 08:03:24.800","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","201205","MY100012006","6330","3052910","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34889504","0","11 May 2026 08:45:30:720","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","08 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260511 08:45:30.720","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","196381","MY100072004","6330","2952422","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33643445","0","13 Apr 2026 00:12:29:363","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","06 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260413 00:12:29.363","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","200231","MY100072005","6330","3034069","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33643447","0","13 Apr 2026 00:13:29:247","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260413 00:13:29.247","","" +"NLD","9619","DD5-NL10005","Radboud Umcn","200679","NL100052001","6330","3041884","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34979686","0","12 May 2026 13:38:09:227","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260512 13:38:09.227","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192399","PL100012001","6330","2868561","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31519587","0","29 Jan 2026 13:15:44:933","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260129 13:15:44.933","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192829","PL100012004","6330","2878026","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31726762","0","06 Feb 2026 10:07:45:367","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","5 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260206 10:07:45.367","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193787","PL100012008","6330","2898119","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32395454","0","02 Mar 2026 14:20:58:940","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260302 14:20:58.940","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193895","PL100012009","6330","2900654","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32550971","0","05 Mar 2026 09:11:38:980","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","4 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260305 09:11:38.980","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193916","PL100012010","6330","2901134","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32271278","0","25 Feb 2026 09:38:25:340","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260225 09:38:25.340","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194440","PL100012011","6330","2912609","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31893306","0","12 Feb 2026 10:16:20:180","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260212 10:16:20.180","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194508","PL100012012","6330","2914074","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32551002","0","05 Mar 2026 09:13:40:090","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","4 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260305 09:13:40.090","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194694","PL100012014","6330","2917889","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32107821","0","19 Feb 2026 10:38:49:267","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260219 10:38:49.267","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196420","PL100012017","6330","2953335","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33472502","0","02 Apr 2026 11:35:12:077","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","31 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260402 11:35:12.077","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","202625","PL100012019","6330","3081766","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35023912","0","13 May 2026 12:29:02:180","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260513 12:29:02.180","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193255","PL100022005","6330","2886968","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31971384","0","13 Feb 2026 10:49:37:037","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260213 10:49:37.037","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","195964","PL100022007","6330","2943668","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32588800","0","06 Mar 2026 10:09:10:313","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","04 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260306 10:09:10.313","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","198771","PL100022011","6330","3003470","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33103419","0","19 Mar 2026 10:29:50:473","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260319 10:29:50.473","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201978","PL100022016","6330","3068938","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34592493","0","05 May 2026 09:06:49:447","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260505 09:06:49.447","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","194526","PL100042001","6330","2914496","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32431305","0","03 Mar 2026 10:10:04:133","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260303 10:10:04.133","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","199247","PL100042002","6330","3013978","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33900915","0","20 Apr 2026 12:12:01:363","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260420 12:12:01.363","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","199257","PL100042003","6330","3014252","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34392549","0","29 Apr 2026 05:22:18:357","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260429 05:22:18.357","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","201819","PL100042004","6330","3065077","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34393652","0","29 Apr 2026 06:22:26:747","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260429 06:22:26.747","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","193444","PL100052003","6330","2890663","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32269274","0","25 Feb 2026 08:54:27:487","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","13 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260225 08:54:27.487","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196501","PL100052005","6330","2955043","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33611458","0","10 Apr 2026 11:08:04:547","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260410 11:08:04.547","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","200291","PL100052011","6330","3035319","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35046783","0","15 May 2026 08:47:22:317","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","22 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260515 08:47:22.317","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190931","PL100062001","6330","2836065","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31640464","0","04 Feb 2026 08:53:52:080","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260204 08:53:52.080","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193344","PL100062004","6330","2888548","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34668990","0","06 May 2026 10:04:31:317","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260506 10:04:31.317","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193468","PL100062006","6330","2891145","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34669438","0","06 May 2026 10:35:40:727","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260506 10:35:40.727","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193832","PL100062007","6330","2899104","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34670801","0","06 May 2026 10:38:37:187","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260506 10:38:37.187","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195998","PL100062010","6330","2944614","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34734049","0","07 May 2026 12:25:54:497","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260507 12:25:54.497","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200282","PL100072009","6330","3035128","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33990096","0","22 Apr 2026 10:47:42:513","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260422 10:47:42.513","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200834","PL100072013","6330","3045115","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35193790","0","20 May 2026 12:23:40:080","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260520 12:23:40.080","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","191226","PL100082001","6330","2842096","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31141724","0","03 Apr 2026 11:47:56:833","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260403 11:47:56.833","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","194026","PL100082003","6330","2903859","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33474014","0","03 Apr 2026 12:07:18:357","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260403 12:07:18.357","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","197064","PL100082004","6330","2966378","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33474017","0","03 Apr 2026 12:09:01:283","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260403 12:09:01.283","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","194330","PL100092001","6330","2910213","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32197760","0","24 Feb 2026 05:10:52:853","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260224 05:10:52.853","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","196429","PL100092003","6330","2953527","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34716059","0","07 May 2026 12:58:54:390","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260507 12:58:54.390","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192780","PL100102002","6330","2876975","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33108982","0","19 Mar 2026 12:49:01:460","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","3 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260319 12:49:01.460","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194922","PL100102006","6330","2923109","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33141899","0","20 Mar 2026 13:28:20:267","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260320 13:28:20.267","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193049","PL100122001","6330","2883047","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31853064","0","11 Feb 2026 11:12:01:353","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260211 11:12:01.353","","" +"POL","9894","DD5-PL10012","ETG Zamosc","199767","PL100122004","6330","3024867","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34348958","0","28 Apr 2026 08:19:23:457","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260428 08:19:23.457","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192416","PL100132003","6330","2868838","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31330862","0","13 Feb 2026 11:16:32:323","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260213 11:16:32.323","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192693","PL100132004","6330","2874887","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31854608","0","13 Feb 2026 11:18:47:583","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260213 11:18:47.583","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192716","PL100132005","6330","2875564","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31854638","0","13 Feb 2026 11:19:14:313","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260213 11:19:14.313","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","196332","PL100132009","6330","2951619","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32934395","0","13 Mar 2026 08:46:18:837","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","13 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260313 08:46:18.837","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","198671","PL100132010","6330","3001448","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33522624","0","07 Apr 2026 09:12:45:867","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260407 09:12:45.867","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191557","PL100142001","6330","2849151","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31264541","0","19 Jan 2026 07:44:27:040","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260119 07:44:27.040","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191857","PL100142002","6330","2856939","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31264524","0","19 Jan 2026 07:45:11:153","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260119 07:45:11.153","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193963","PL100142004","6330","2902398","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32414574","0","03 Mar 2026 07:34:56:987","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260303 07:34:56.987","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","196096","PL100142008","6330","2946601","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33318398","0","26 Mar 2026 13:01:57:833","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260326 13:01:57.833","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","2929865","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35185440","0","20 May 2026 08:31:49:967","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","12 MAY 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260520 08:31:49.967","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","2998396","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35010269","0","20 May 2026 08:21:56:767","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","22 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Adverse Event","What was the subjects primary reason for trial discontinuation/completion?","#001 > 16APR2026 > EXACERBATION OF UC","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260520 08:21:56.767","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198508","PL100152003","6330","2998468","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33630918","0","20 Apr 2026 15:10:23:600","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260420 15:10:23.600","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","202786","PL100152007","6330","3085453","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35185518","0","20 May 2026 08:34:50:790","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260520 08:34:50.790","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","190715","PL100162001","6330","2832041","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31236428","0","16 Jan 2026 12:33:28:273","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260116 12:33:28.273","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192592","PL100162003","6330","2872547","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32239267","0","24 Feb 2026 12:21:55:913","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260224 12:21:55.913","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","193860","PL100162006","6330","2899883","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32043256","0","17 Feb 2026 12:28:49:597","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260217 12:28:49.597","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","193870","PL100162007","6330","2900069","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31690601","0","12 Feb 2026 12:48:41:793","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","2 FEB 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260212 12:48:41.793","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195193","PL100162011","6330","2929007","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32183337","0","23 Feb 2026 15:11:32:163","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260223 15:11:32.163","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","192870","PL100192001","6330","2879040","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32564629","0","05 Mar 2026 13:37:51:530","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260305 13:37:51.530","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","193115","PL100192002","6330","2884226","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32564602","0","05 Mar 2026 13:36:44:577","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260305 13:36:44.577","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","194516","PL100192003","6330","2914271","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32383205","0","02 Mar 2026 10:53:45:243","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260302 10:53:45.243","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195310","PL100192005","6330","2931175","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33043372","0","17 Mar 2026 16:00:51:770","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260317 16:00:51.770","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","202550","PL100192006","6330","3080169","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34999501","0","13 May 2026 06:44:30:427","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","08 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260513 06:44:30.427","","" +"POL","9899","DD5-PL10021","RiverMED","200106","PL100212002","6330","3031619","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33992941","0","22 Apr 2026 11:29:55:247","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260422 11:29:55.247","","" +"POL","9899","DD5-PL10021","RiverMED","200114","PL100212003","6330","3031760","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35122319","0","18 May 2026 09:33:41:727","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260518 09:33:41.727","","" +"POL","9899","DD5-PL10021","RiverMED","202202","PL100212005","6330","3072965","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35163199","0","19 May 2026 12:38:58:843","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260519 12:38:58.843","","" +"POL","9917","DD5-PL10023","Szpital Grochowski Im Dr Med Rafala Masztaka Sp Z O O","199170","PL100232001","6330","3012421","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33421364","0","14 May 2026 08:09:08:760","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260514 08:09:08.760","","" +"POL","9934","DD5-PL10024","Clinical Best Solutions Warszawa","197453","PL100242001","6330","2974892","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34963745","0","12 May 2026 09:13:38:673","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260512 09:13:38.673","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","195802","PL100252001","6330","2940369","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32999823","0","17 Mar 2026 01:15:29:440","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260317 01:15:29.440","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202195","PL100252002","6330","3072810","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34743549","0","07 May 2026 19:03:46:870","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","7 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260507 19:03:46.870","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","198505","PL100262002","6330","2998429","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34972829","0","18 May 2026 11:14:49:967","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 MAR 2026","Disposition Date","Other","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","SUBJECT IS A SCREEN FAILED","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260518 11:14:49.967","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","198512","PL100262003","6330","2998528","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34973801","0","18 May 2026 11:09:15:800","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 MAR 2026","Disposition Date","Other","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","SUBJECT IS A SCREEN FAILED","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260518 11:09:15.800","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191313","PL100282002","6330","2843704","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33071325","0","18 Mar 2026 11:24:14:693","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260318 11:24:14.693","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191333","PL100282004","6330","2843962","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33072339","0","18 Mar 2026 11:42:17:427","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260318 11:42:17.427","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192926","PL100282006","6330","2880278","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33073908","0","18 Mar 2026 12:06:19:717","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260318 12:06:19.717","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198761","PL100302003","6330","3003301","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34011564","0","28 Apr 2026 07:47:40:753","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260428 07:47:40.753","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198784","PL100302004","6330","3003851","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34354125","0","28 Apr 2026 09:13:52:163","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260428 09:13:52.163","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194893","PL100351002","6330","2922659","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32805773","0","10 Mar 2026 09:23:52:637","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260310 09:23:52.637","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198286","PL100351003","6330","2994434","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33600791","0","09 Apr 2026 11:39:53:957","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260409 11:39:53.957","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","203868","PL100351007","6330","3111908","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34964664","0","13 May 2026 10:40:59:030","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260513 10:40:59.030","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193707","PL100362008","6330","2897036","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31967387","0","14 Feb 2026 21:26:39:230","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","28 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260214 21:26:39.230","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194274","PL100362009","6330","2909203","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32175848","0","14 May 2026 14:01:47:997","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260514 14:01:47.997","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","197549","PL100362012","6330","2977326","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33605211","0","09 Apr 2026 13:37:41:813","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260409 13:37:41.813","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197651","PT100011002","6330","2979195","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33449347","0","05 May 2026 13:13:47:647","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260505 13:13:47.647","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194229","PT100012001","6330","2908294","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33387806","0","20 Apr 2026 15:18:07:367","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260420 15:18:07.367","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194240","PT100012002","6330","2908528","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33415487","0","20 Apr 2026 15:19:30:527","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","09 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260420 15:19:30.527","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196294","PT100012004","6330","2950771","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33415786","0","20 Apr 2026 15:47:27:797","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260420 15:47:27.797","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197752","PT100012006","6330","2981434","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33910899","0","20 Apr 2026 16:44:48:377","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260420 16:44:48.377","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","202226","PT100012009","6330","3073518","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34636913","0","19 May 2026 14:43:03:220","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260519 14:43:03.220","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","190800","PT100042001","6330","2833490","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31026207","0","08 Jan 2026 15:15:47:903","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260108 15:15:47.903","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196753","PT100042002","6330","2960196","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33365679","0","29 Mar 2026 22:22:30:400","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260329 22:22:30.400","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","202099","PT100042005","6330","3071344","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34522972","0","30 Apr 2026 23:03:53:717","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260430 23:03:53.717","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","190852","RO100062001","6330","2834455","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31915169","0","12 Feb 2026 14:27:46:570","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","22 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260212 14:27:46.570","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","192567","RO100062002","6330","2872082","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34159115","0","26 Apr 2026 19:01:35:360","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260426 19:01:35.360","","" +"SWE","9847","DD5-SE10001","Ersta sjukhus","200421","SE100012001","6330","3037641","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33925344","0","21 Apr 2026 08:11:17:030","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","31 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260421 08:11:17.030","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2887397","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33078793","0","27 Apr 2026 08:19:39:580","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","To pursue alternative treatment","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260427 08:19:39.580","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","194785","SE100022002","6330","2919903","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32007469","0","16 Feb 2026 07:07:56:813","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260216 07:07:56.813","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","201752","SE100022004","6330","3063828","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35228352","0","21 May 2026 12:12:58:587","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260521 12:12:58.587","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2860344","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31803644","0","16 Mar 2026 08:00:46:003","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","10 FEB 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260316 08:00:46.003","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","194489","TR100022001","6330","2913603","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33317432","0","26 Mar 2026 12:30:23:217","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260326 12:30:23.217","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","196426","TR100022002","6330","2953442","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32629717","0","26 Mar 2026 12:32:13:410","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260326 12:32:13.410","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","2956745","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33783797","0","16 Apr 2026 12:58:34:840","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260416 12:58:34.840","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","192863","TR100052001","6330","2878914","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32525840","0","04 Mar 2026 11:40:30:360","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","09 FEB 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260304 11:40:30.360","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","195756","TR100052002","6330","2938938","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33028666","0","17 Mar 2026 10:48:32:003","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260317 10:48:32.003","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","196588","TR100052003","6330","2956767","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33028680","0","17 Mar 2026 10:49:14:017","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260317 10:49:14.017","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","199022","TR100072001","6330","3009249","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33565211","0","08 Apr 2026 12:24:38:537","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260408 12:24:38.537","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","190814","TW100022001","6330","2833860","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31362541","0","22 Jan 2026 07:57:07:870","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260122 07:57:07.870","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","191960","TW100022002","6330","2859343","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31362600","0","22 Jan 2026 07:58:25:117","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260122 07:58:25.117","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","188304","TW100032002","6330","2783439","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31152920","0","13 Jan 2026 12:08:44:123","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260113 12:08:44.123","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2590022","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33749036","0","21 May 2026 17:09:34:457","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","6 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260521 17:09:34.457","","" +"USA","8844","DD5-US10001","Clinnova Research","181084","US100012004","6330","2621314","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30647231","0","12 Jan 2026 18:35:27:100","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","1 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260112 18:35:27.100","","" +"USA","8844","DD5-US10001","Clinnova Research","186310","US100012005","6330","2717464","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31284051","0","19 Jan 2026 17:46:02:007","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260119 17:46:02.007","","" +"USA","8844","DD5-US10001","Clinnova Research","196664","US100012008","6330","2958317","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33751289","0","15 Apr 2026 20:07:47:373","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260415 20:07:47.373","","" +"USA","9686","DD5-US10009","Southern Star Research Institute, LLC","186010","US100092001","6330","2711417","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31451364","0","09 Feb 2026 14:06:24:553","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260209 14:06:24.553","","" +"USA","9786","DD5-US10016","GastroIntestinal Bioscience","191561","US100162001","6330","2849348","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32884924","0","11 Mar 2026 20:44:41:417","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260311 20:44:41.417","","" +"USA","9633","DD5-US10018","New York Gastroenterology Associates","191465","US100182001","6330","2846838","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32055395","0","17 Feb 2026 18:18:51:597","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 JAN 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260217 18:18:51.597","","" +"USA","9633","DD5-US10018","New York Gastroenterology Associates","201336","US100182002","6330","3055401","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35029864","0","13 May 2026 15:52:39:707","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260513 15:52:39.707","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","194978","US100222001","6330","2924108","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33088489","0","18 Mar 2026 22:18:12:397","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260318 22:18:12.397","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199858","US100222004","6330","3026843","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33201146","0","23 Mar 2026 22:04:51:407","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260323 22:04:51.407","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","190795","US100232001","6330","2833395","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31584002","0","02 Feb 2026 17:56:55:953","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260202 17:56:55.953","","" +"USA","9656","DD5-US10027","Florida Research Center Inc.","185266","US100272001","6330","2698165","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31373900","0","22 Jan 2026 14:13:35:523","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260122 14:13:35.523","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","193204","US100462001","6330","2886070","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32151989","0","20 Feb 2026 16:20:00:977","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260220 16:20:00.977","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","193925","US100462002","6330","2901421","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32022272","0","18 Feb 2026 19:42:21:893","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260218 19:42:21.893","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","194556","US100462003","6330","2915246","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31739519","0","10 Feb 2026 16:31:00:413","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","04 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260210 16:31:00.413","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","2927333","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33964896","0","21 May 2026 18:56:24:403","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Other","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","PREGNANCY","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260521 18:56:24.403","","" +"USA","9689","DD5-US10049","Gastroenterolgy Associates of Central GA","191145","US100492001","6330","2840200","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31734637","0","06 Feb 2026 14:47:07:637","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260206 14:47:07.637","","" +"USA","10028","DD5-US10057","TLC Clinical Research Inc","198940","US100572001","6330","3007559","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33711940","0","14 Apr 2026 22:49:49:373","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260414 22:49:49.373","","" +"USA","10028","DD5-US10057","TLC Clinical Research Inc","200216","US100572002","6330","3033818","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34700645","0","20 May 2026 18:28:04:910","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","01 MAY 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260520 18:28:04.910","","" +"USA","9628","DD5-US10059","Om Research LLC","186304","US100592001","6330","2717331","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30958842","0","28 Jan 2026 19:09:51:630","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260128 19:09:51.630","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","179807","US100632001","6330","2595339","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","28461550","0","28 Oct 2025 15:05:57:273","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 OCT 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20251028 15:05:57.273","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","183786","US100632002","6330","2670829","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","29546687","0","24 Nov 2025 20:12:14:047","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","7 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20251124 20:12:14.047","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","196543","US100632004","6330","2955838","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32333748","0","26 Feb 2026 18:30:25:587","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260226 18:30:25.587","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193186","US100772001","6330","2885662","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32396853","0","02 Mar 2026 14:35:38:330","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260302 14:35:38.330","","" +"USA","9624","DD5-US10081","The Oregon Clinic","189784","US100812001","6330","2811836","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31430823","0","26 Jan 2026 21:53:49:083","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260126 21:53:49.083","","" +"USA","9624","DD5-US10081","The Oregon Clinic","193369","US100812002","6330","2889005","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32255106","0","24 Feb 2026 21:22:12:660","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260224 21:22:12.660","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","2942321","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33614760","0","14 Apr 2026 19:49:35:130","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","10 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","To pursue alternative treatment","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260414 19:49:35.130","","" +"USA","9257","DD5-US10089","Cotton O'Neil Digestive Health Center","196814","US100892001","6330","2961394","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32919126","0","12 Mar 2026 17:42:22:703","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 08:30:23.450","GMT","20260312 17:42:22.703","","" diff --git a/Medidata/downloads/2026-05-25_12-01_EDC_UCO3001_ALL_DateofVisit_DataListing.csv b/Medidata/downloads/2026-05-25_12-01_EDC_UCO3001_ALL_DateofVisit_DataListing.csv new file mode 100644 index 0000000..262da72 --- /dev/null +++ b/Medidata/downloads/2026-05-25_12-01_EDC_UCO3001_ALL_DateofVisit_DataListing.csv @@ -0,0 +1,2934 @@ +"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" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","197447","AR100012001","6330","2974779","Screening","3","Date of Visit","32501452","0","21 Apr 2026 14:50:03:940","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 14:50:03.940","","" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","200155","AR100012002","6330","3032634","Screening","3","Date of Visit","33275074","0","27 Apr 2026 07:19:12:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 07:19:12.870","","" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","200155","AR100012002","6330","3124838","Week I-0 (1)","7","Date of Visit","34515265","0","06 May 2026 14:27:35:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","UNDEFINED A","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 14:27:35.913","","" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","201831","AR100012003","6330","3065482","Screening","3","Date of Visit","33703639","0","21 Apr 2026 14:49:32:827","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 14:49:32.827","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","2877678","Screening","3","Date of Visit","31183666","0","14 Jan 2026 19:00:57:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260114 19:00:57.123","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","2929553","Week I-0 (1)","7","Date of Visit","31858152","0","23 Feb 2026 18:20:28:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 18:20:28.097","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","2952087","Week I-2 (1)","8","Date of Visit","32190790","0","01 Apr 2026 18:58:25:203","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 18:58:25.203","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","3045838","Week I-4 (1)","9","Date of Visit","33453196","0","01 Apr 2026 19:02:58:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 19:02:58.973","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","3045846","Week I-8 (1)","10","Date of Visit","33453267","0","08 May 2026 12:09:55:333","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 12:09:55.333","","" +"ARG","9110","DD5-AR10005","CIPREC","192812","AR100052001","6330","3168116","Week I-12 (1)","11","Date of Visit","34829313","0","08 May 2026 12:17:17:733","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 12:17:17.733","","" +"ARG","9110","DD5-AR10005","CIPREC","200149","AR100052002","6330","3032523","Screening","3","Date of Visit","33274204","0","22 Apr 2026 16:24:20:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 16:24:20.010","","" +"ARG","9110","DD5-AR10005","CIPREC","200149","AR100052002","6330","3084625","Week I-0 (1)","7","Date of Visit","33997307","0","22 Apr 2026 18:01:02:833","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 18:01:02.833","","" +"ARG","9110","DD5-AR10005","CIPREC","200149","AR100052002","6330","3086083","Week I-2 (1)","8","Date of Visit","34024048","0","08 May 2026 13:52:50:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 13:52:50.090","","" +"ARG","9172","DD5-AR10006","GEDYT","191642","AR100062001","6330","2851779","Screening","3","Date of Visit","30850925","0","03 Feb 2026 16:03:17:537","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 16:03:17.537","","" +"ARG","9172","DD5-AR10006","GEDYT","194445","AR100062002","6330","2912679","Screening","3","Date of Visit","31626186","0","04 Mar 2026 17:08:37:807","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 17:08:37.807","","" +"ARG","9172","DD5-AR10006","GEDYT","194445","AR100062002","6330","2955325","Week I-0 (1)","7","Date of Visit","32244752","0","04 Mar 2026 17:09:25:247","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 17:09:25.247","","" +"ARG","9172","DD5-AR10006","GEDYT","196787","AR100062003","6330","2960887","Screening","3","Date of Visit","32327809","0","09 Apr 2026 14:14:43:060","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 14:14:43.060","","" +"ARG","9172","DD5-AR10006","GEDYT","197460","AR100062004","6330","2975084","Screening","3","Date of Visit","32505537","0","09 Apr 2026 14:16:34:067","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 14:16:34.067","","" +"ARG","9172","DD5-AR10006","GEDYT","199250","AR100062005","6330","3014098","Screening","3","Date of Visit","33040486","0","14 Apr 2026 18:55:05:577","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 18:55:05.577","","" +"ARG","9172","DD5-AR10006","GEDYT","201947","AR100062006","6330","3068209","Screening","3","Date of Visit","33747557","0","15 Apr 2026 18:30:05:820","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 18:30:05.820","","" +"ARG","9172","DD5-AR10006","GEDYT","201947","AR100062006","6330","3112328","Week I-0 (1)","7","Date of Visit","34324797","0","28 Apr 2026 12:51:28:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 12:51:28.000","","" +"ARG","9172","DD5-AR10006","GEDYT","201947","AR100062006","6330","3115300","Week I-2 (1)","8","Date of Visit","34373118","0","13 May 2026 11:40:52:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 11:40:52.563","","" +"ARG","9172","DD5-AR10006","GEDYT","211215","AR100062007","6330","3201522","Screening","3","Date of Visit","35164952","0","19 May 2026 16:29:12:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 16:29:12.187","","" +"ARG","9136","DD5-AR10007","Hospital Privado Centro Medico de Cordoba","202770","AR100072001","6330","3084944","Screening","3","Date of Visit","34001404","0","27 Apr 2026 02:15:34:190","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 02:15:34.190","","" +"ARG","9136","DD5-AR10007","Hospital Privado Centro Medico de Cordoba","204064","AR100072002","6330","3115286","Screening","3","Date of Visit","34372934","0","18 May 2026 23:47:02:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 23:47:02.787","","" +"ARG","9136","DD5-AR10007","Hospital Privado Centro Medico de Cordoba","204065","AR100072003","6330","3115299","Screening","3","Date of Visit","34373057","0","19 May 2026 00:20:28:910","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 00:20:28.910","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","2898897","Screening","3","Date of Visit","31449881","0","12 Mar 2026 11:49:08:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 11:49:08.697","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","2951421","Week I-0 (1)","7","Date of Visit","32178150","0","23 Feb 2026 20:35:16:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 20:35:16.537","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","2952238","Week I-2 (1)","8","Date of Visit","32192986","0","11 Mar 2026 18:17:21:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 18:17:21.877","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","3002306","Week I-4 (1)","9","Date of Visit","32881302","0","23 Mar 2026 13:09:26:243","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 13:09:26.243","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","3026138","Week I-8 (1)","10","Date of Visit","33190196","0","28 Apr 2026 13:11:46:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 13:11:46.890","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","193825","AR100092001","6330","3115388","Week I-12 (1)","11","Date of Visit","34373886","0","22 May 2026 13:02:30:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 13:02:30.600","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","200605","AR100092002","6330","3040702","Screening","3","Date of Visit","33382072","0","22 May 2026 13:30:12:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 13:30:12.600","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","200605","AR100092002","6330","3115004","Week I-0 (1)","7","Date of Visit","34367318","0","28 Apr 2026 13:06:21:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 13:06:21.623","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","200605","AR100092002","6330","3115338","Week I-2 (1)","8","Date of Visit","34373489","0","12 May 2026 13:41:06:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 13:41:06.230","","" +"ARG","9066","DD5-AR10009","Kynet Recoleta","204082","AR100092003","6330","3115637","Screening","3","Date of Visit","34377473","0","22 May 2026 13:18:34:667","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 13:18:34.667","","" +"ARG","9137","DD5-AR10013","Hospital Britanico de Buenos Aires","210485","AR100132001","6330","3186574","Screening","3","Date of Visit","34946352","0","11 May 2026 18:48:08:597","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 18:48:08.597","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","2908964","Screening","3","Date of Visit","31576870","0","05 Feb 2026 12:49:39:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 12:49:39.010","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","2957639","Week I-0 (1)","7","Date of Visit","32281912","0","26 Feb 2026 12:29:05:567","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 12:29:05.567","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","2960361","Week I-2 (1)","8","Date of Visit","32321007","0","11 Mar 2026 15:37:29:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 15:37:29.557","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","3001945","Week I-4 (1)","9","Date of Visit","32876500","0","30 Mar 2026 21:00:21:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 21:00:21.833","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","3041510","Week I-8 (1)","10","Date of Visit","33392509","0","22 Apr 2026 12:15:54:283","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 12:15:54.283","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","3084614","Week I-12 (1)","11","Date of Visit","33996946","0","20 May 2026 18:16:50:130","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 18:16:50.130","","" +"ARG","9111","DD5-AR10014","HIGEA","200643","AR100142002","6330","3041198","Screening","3","Date of Visit","33388438","0","01 Apr 2026 12:21:44:750","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 12:21:44.750","","" +"ARG","9111","DD5-AR10014","HIGEA","211091","AR100142003","6330","3198976","Screening","3","Date of Visit","35128513","0","18 May 2026 14:17:21:880","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 14:17:21.880","","" +"ARG","9111","DD5-AR10014","HIGEA","211346","AR100142004","6330","3204076","Screening","3","Date of Visit","35198426","0","20 May 2026 15:50:41:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 15:50:41.597","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200610","AR100181001","6330","3040739","Screening","3","Date of Visit","33382352","0","17 Apr 2026 14:57:13:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 14:57:13.813","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200610","AR100181001","6330","3112135","Week I-0 (1)","7","Date of Visit","34322287","0","01 May 2026 18:57:18:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 18:57:18.310","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200610","AR100181001","6330","3113016","Week I-2 (1)","8","Date of Visit","34334845","0","11 May 2026 13:17:24:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 13:17:24.187","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200627","AR100181002","6330","3040988","Screening","3","Date of Visit","33385584","0","01 May 2026 18:52:33:683","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 18:52:33.683","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","2898775","Screening","3","Date of Visit","31448310","0","13 Mar 2026 12:17:57:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 12:17:57.927","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","2997528","Week I-0 (1)","7","Date of Visit","32816091","0","10 Mar 2026 21:34:22:443","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 21:34:22.443","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","2997772","Week I-2 (1)","8","Date of Visit","32820818","0","27 Mar 2026 13:27:20:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 13:27:20.703","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","3038306","Week I-4 (1)","9","Date of Visit","33352977","0","07 Apr 2026 19:23:44:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 19:23:44.137","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","3052492","Week I-8 (1)","10","Date of Visit","33538566","0","09 May 2026 19:27:45:573","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260509 19:27:45.573","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","3077909","Unscheduled 20260325","59","Date of Visit","33901128","0","21 Apr 2026 21:52:46:363","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 21:52:46.363","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","193819","AR100202001","6330","3082166","Unscheduled 20260417","59","Date of Visit","33964929","0","20 May 2026 14:36:30:043","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","17 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","BLOOD AND URINE TESTS","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 14:36:30.043","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","196818","AR100202002","6330","2961484","Screening","3","Date of Visit","32333906","0","26 Feb 2026 19:56:25:667","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 19:56:25.667","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","196818","AR100202002","6330","3049674","Week I-0 (1)","7","Date of Visit","33504405","0","07 Apr 2026 19:32:07:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 19:32:07.567","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","196818","AR100202002","6330","3052497","Week I-2 (1)","8","Date of Visit","33538636","0","21 Apr 2026 22:15:55:437","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 22:15:55.437","","" +"ARG","9297","DD5-AR10020","Centro de Investigaciones Clinicas","196818","AR100202002","6330","3082164","Week I-4 (1)","9","Date of Visit","33964884","0","09 May 2026 19:39:48:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260509 19:39:48.830","","" +"ARG","9311","DD5-AR10021","Instituto de Investigaciones Clinicas T y T","201683","AR100212001","6330","3062226","Screening","3","Date of Visit","33659444","0","13 Apr 2026 18:54:22:183","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 18:54:22.183","","" +"ARG","9311","DD5-AR10021","Instituto de Investigaciones Clinicas T y T","201683","AR100212001","6330","3188589","Week I-0 (1)","7","Date of Visit","34977783","0","19 May 2026 00:52:15:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 00:52:15.090","","" +"ARG","9311","DD5-AR10021","Instituto de Investigaciones Clinicas T y T","205079","AR100212002","6330","3137408","Screening","3","Date of Visit","34734210","0","12 May 2026 00:46:52:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 00:46:52.890","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2864978","Screening","3","Date of Visit","31028209","0","11 Mar 2026 03:02:05:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 03:02:05.717","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2942914","Week I-0 (1)","7","Date of Visit","32064327","0","18 Feb 2026 03:46:38:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260218 03:46:38.817","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2943068","Week I-2 (1)","8","Date of Visit","32066191","0","03 Mar 2026 21:51:03:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 21:51:03.387","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2975306","Week I-4 (1)","9","Date of Visit","32508611","0","17 Mar 2026 20:42:13:287","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 20:42:13.287","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","3014790","Week I-8 (1)","10","Date of Visit","33049783","0","13 May 2026 00:39:25:970","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 00:39:25.970","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","3068600","Week I-12 (1)","11","Date of Visit","33753169","0","13 May 2026 04:47:50:007","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 04:47:50.007","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","195930","AU100012002","6330","2942932","Screening","3","Date of Visit","32064477","0","06 Mar 2026 03:37:39:667","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 03:37:39.667","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","200052","AU100012003","6330","3030578","Screening","3","Date of Visit","33248180","0","26 Mar 2026 00:12:20:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 00:12:20.587","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","200052","AU100012003","6330","3082194","Week I-0 (1)","7","Date of Visit","33965407","0","22 Apr 2026 22:45:03:133","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 22:45:03.133","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","200052","AU100012003","6330","3086262","Week I-2 (1)","8","Date of Visit","34026699","0","07 May 2026 01:36:47:067","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 01:36:47.067","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","200052","AU100012003","6330","3135600","Week I-4 (1)","9","Date of Visit","34701530","0","20 May 2026 22:54:52:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 22:54:52.857","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2702577","Screening","3","Date of Visit","29087038","0","26 Nov 2025 20:49:46:800","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251126 20:49:46.800","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2836923","Week I-0 (1)","7","Date of Visit","30652100","0","24 Dec 2025 00:10:08:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251224 00:10:08.277","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2852144","Week I-2 (1)","8","Date of Visit","30855816","0","29 Dec 2025 01:57:35:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251229 01:57:35.570","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2856083","Week I-4 (1)","9","Date of Visit","30916530","0","12 Jan 2026 03:23:08:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260112 03:23:08.563","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2871586","Week I-8 (1)","10","Date of Visit","31108757","0","13 Feb 2026 02:53:26:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 02:53:26.630","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2934050","Week I-12 (1)","11","Date of Visit","31928797","0","05 May 2026 23:50:36:970","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 23:50:36.970","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","2995663","Week M-4 (1)","15","Date of Visit","32792310","0","08 Apr 2026 01:17:09:520","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 01:17:09.520","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","3052686","Week M-8 (1)","16","Date of Visit","33542096","0","06 May 2026 01:57:22:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 01:57:22.227","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","185595","AU100022001","6330","3082189","Clinical Flare 20260520","25","Date of Visit","33965231","0","20 May 2026 03:09:04:550","Tier 1","SDVTier","Yes","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 03:09:04.550","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","190113","AU100022002","6330","2817863","Screening","3","Date of Visit","30404917","0","12 Jan 2026 03:32:46:823","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260112 03:32:46.823","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","199289","AU100022003","6330","3014968","Screening","3","Date of Visit","33051601","0","01 Apr 2026 04:59:36:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 04:59:36.393","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","199289","AU100022003","6330","3096536","Week I-0 (1)","7","Date of Visit","34159585","0","27 Apr 2026 03:04:04:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 03:04:04.397","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","199289","AU100022003","6330","3097462","Week I-2 (1)","8","Date of Visit","34168191","0","11 May 2026 02:18:14:263","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 02:18:14.263","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","199289","AU100022003","6330","3169165","Week I-4 (1)","9","Date of Visit","34842576","0","25 May 2026 04:12:01:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 04:12:01.583","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","2977837","Screening","3","Date of Visit","32540640","0","11 Mar 2026 07:01:52:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 07:01:52.803","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","3068598","Week I-0 (1)","7","Date of Visit","33753121","0","19 Apr 2026 06:53:49:520","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260419 06:53:49.520","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","3075433","Week I-2 (1)","8","Date of Visit","33862970","0","06 May 2026 04:08:16:087","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT NO LONGER WISHES TO CONTINUE IN THE TRIAL","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 04:08:16.087","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","3132745","Induction Early Discontinuation (1)","12","Date of Visit","34643438","0","06 May 2026 04:09:03:677","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT NO LONGER WISHES TO COMPLETE THIS VISIT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 04:09:03.677","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","200225","AU100042002","6330","3033980","Screening","3","Date of Visit","33291319","0","31 Mar 2026 22:10:17:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 22:10:17.707","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","200225","AU100042002","6330","3169147","Week I-0 (1)","7","Date of Visit","34842377","0","13 May 2026 08:45:06:170","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 08:45:06.170","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","201969","AU100042004","6330","3068718","Screening","3","Date of Visit","33754669","0","19 Apr 2026 08:04:49:443","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260419 08:04:49.443","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","200056","AU100052001","6330","3030630","Screening","3","Date of Visit","33248604","0","25 Mar 2026 05:21:36:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 05:21:36.580","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","200056","AU100052001","6330","3082179","Week I-0 (1)","7","Date of Visit","33965112","0","22 Apr 2026 03:20:35:720","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 03:20:35.720","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","200056","AU100052001","6330","3082296","Week I-2 (1)","8","Date of Visit","33966932","0","06 May 2026 01:35:57:197","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 01:35:57.197","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","200056","AU100052001","6330","3132693","Week I-4 (1)","9","Date of Visit","34642492","0","20 May 2026 06:09:26:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 06:09:26.340","","" +"AUS","9652","DD5-AU10005","Fiona Stanley Hospital","204107","AU100052002","6330","3116329","Screening","3","Date of Visit","34389533","0","30 Apr 2026 00:42:38:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 00:42:38.623","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","201853","AU100091001","6330","3066143","Screening","3","Date of Visit","33712106","0","15 Apr 2026 02:21:30:453","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 02:21:30.453","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","211365","AU100091002","6330","3204633","Screening","3","Date of Visit","35206099","0","21 May 2026 00:26:58:600","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 00:26:58.600","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","189868","AU100092002","6330","2813954","Screening","3","Date of Visit","30351464","0","19 Mar 2026 06:18:51:473","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 06:18:51.473","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","2921672","Screening","3","Date of Visit","31745455","0","09 Feb 2026 05:02:45:907","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 05:02:45.907","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","2977785","Week I-0 (1)","7","Date of Visit","32539732","0","05 Mar 2026 06:49:40:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 06:49:40.597","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","2978278","Week I-2 (1)","8","Date of Visit","32545920","0","19 Mar 2026 05:12:13:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 05:12:13.533","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","3017961","Week I-4 (1)","9","Date of Visit","33090890","0","02 Apr 2026 01:22:39:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 01:22:39.920","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","194864","AU100092003","6330","3046012","Week I-8 (1)","10","Date of Visit","33456230","0","27 Apr 2026 05:46:01:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 05:46:01.887","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2867234","Screening","3","Date of Visit","31056589","0","08 Jan 2026 04:41:32:140","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260108 04:41:32.140","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2907744","Week I-0 (1)","7","Date of Visit","31560586","0","02 Feb 2026 04:23:12:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 04:23:12.020","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2907913","Week I-2 (1)","8","Date of Visit","31563078","0","13 Feb 2026 04:46:08:793","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 04:46:08.793","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2934169","Week I-4 (1)","9","Date of Visit","31931055","0","04 Mar 2026 23:10:46:967","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 23:10:46.967","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","2977799","Week I-8 (1)","10","Date of Visit","32540014","0","01 Apr 2026 22:03:50:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 22:03:50.957","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","192341","AU100112001","6330","3045953","Week I-12 (1)","11","Date of Visit","33455088","0","29 Apr 2026 20:53:55:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 20:53:55.817","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","2924263","Screening","3","Date of Visit","31783331","0","11 Feb 2026 22:00:29:103","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 22:00:29.103","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","2975303","Week I-0 (1)","7","Date of Visit","32508488","0","04 Mar 2026 22:55:39:520","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 22:55:39.520","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","2977798","Week I-2 (1)","8","Date of Visit","32539937","0","19 Mar 2026 21:32:46:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 21:32:46.773","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","3020567","Week I-4 (1)","9","Date of Visit","33121203","0","07 Apr 2026 05:05:27:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 05:05:27.843","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","194985","AU100112002","6330","3050687","Week I-8 (1)","10","Date of Visit","33514688","0","20 May 2026 22:24:20:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 22:24:20.050","","" +"AUS","9636","DD5-AU10011","Concord Repatriation General Hospital","211025","AU100112003","6330","3197790","Screening","3","Date of Visit","35111436","0","20 May 2026 22:51:29:623","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 22:51:29.623","","" +"AUS","9637","DD5-AU10012","John Hunter Hospital","196826","AU100122001","6330","2961649","Screening","3","Date of Visit","32336287","0","08 Apr 2026 02:09:27:483","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 02:09:27.483","","" +"AUS","9637","DD5-AU10012","John Hunter Hospital","201856","AU100122002","6330","3066180","Screening","3","Date of Visit","33712645","0","15 Apr 2026 03:45:13:493","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 03:45:13.493","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2842109","Screening","3","Date of Visit","30711755","0","19 Jan 2026 09:52:22:503","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 09:52:22.503","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2879134","Week I-0 (1)","7","Date of Visit","31202211","0","19 Jan 2026 10:28:29:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 10:28:29.877","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2884820","Week I-2 (1)","8","Date of Visit","31272133","0","27 Jan 2026 08:55:25:470","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260127 08:55:25.470","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2898153","Week I-4 (1)","9","Date of Visit","31441135","0","09 Feb 2026 10:28:48:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 10:28:48.080","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2922505","Week I-8 (1)","10","Date of Visit","31758558","0","09 Mar 2026 13:54:02:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 13:54:02.020","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","2994653","Week I-12 (1)","11","Date of Visit","32778408","0","03 Apr 2026 13:02:12:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 13:02:12.337","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","3048436","Week M-4 (1)","15","Date of Visit","33489600","0","30 Apr 2026 11:23:28:373","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 11:23:28.373","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","191227","BE100012001","6330","3124651","Clinical Flare 20260427","25","Date of Visit","34512077","0","30 Apr 2026 11:44:19:217","Tier 1","SDVTier","Yes","Did this visit occur?","","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 11:44:19.217","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","196746","BE100012002","6330","2960080","Screening","3","Date of Visit","32316813","0","03 Apr 2026 13:41:43:967","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 13:41:43.967","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","204563","BE100012003","6330","3126801","Screening","3","Date of Visit","34546405","0","05 May 2026 10:51:15:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 10:51:15.397","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","211388","BE100012004","6330","3205198","Screening","3","Date of Visit","35212742","0","22 May 2026 12:18:49:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:18:49.527","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2890007","Screening","3","Date of Visit","31332359","0","21 Jan 2026 15:19:12:383","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 15:19:12.383","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2922412","Week I-0 (1)","7","Date of Visit","31757108","0","09 Feb 2026 13:32:45:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 13:32:45.640","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2923183","Week I-2 (1)","8","Date of Visit","31767128","0","23 Feb 2026 13:45:24:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 13:45:24.463","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2951508","Week I-4 (1)","9","Date of Visit","32180039","0","09 Mar 2026 13:03:17:913","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 13:03:17.913","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2994505","Week I-8 (1)","10","Date of Visit","32775821","0","11 May 2026 13:22:11:783","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","8 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 13:22:11.783","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","3185986","Induction Early Discontinuation (1)","12","Date of Visit","34935837","0","11 May 2026 13:23:11:250","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 13:23:11.250","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","3185987","Induction Safety Follow Up (1)","13","Date of Visit","34935838","0","20 May 2026 12:37:10:703","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 12:37:10.703","","" +"BEL","9616","DD5-BE10003","AZ Oostende","198692","BE100032001","6330","3001805","Screening","3","Date of Visit","32874560","0","23 Mar 2026 14:32:39:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 14:32:39.177","","" +"BEL","9616","DD5-BE10003","AZ Oostende","198692","BE100032001","6330","3058980","Week I-0 (1)","7","Date of Visit","33621459","0","10 Apr 2026 07:37:15:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 07:37:15.757","","" +"BEL","9616","DD5-BE10003","AZ Oostende","198692","BE100032001","6330","3059095","Week I-2 (1)","8","Date of Visit","33622932","0","23 Apr 2026 12:39:05:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 12:39:05.693","","" +"BEL","9616","DD5-BE10003","AZ Oostende","198692","BE100032001","6330","3088957","Week I-4 (1)","9","Date of Visit","34072276","0","05 May 2026 10:04:23:573","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 10:04:23.573","","" +"BEL","9616","DD5-BE10003","AZ Oostende","200977","BE100032002","6330","3048186","Screening","3","Date of Visit","33487107","0","03 Apr 2026 11:43:34:490","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 11:43:34.490","","" +"BEL","9616","DD5-BE10003","AZ Oostende","200977","BE100032002","6330","3132876","Week I-0 (1)","7","Date of Visit","34645488","0","06 May 2026 07:57:49:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:57:49.460","","" +"BEL","9616","DD5-BE10003","AZ Oostende","200977","BE100032002","6330","3133488","Week I-2 (1)","8","Date of Visit","34661608","0","21 May 2026 06:29:05:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 06:29:05.247","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","2931606","Screening","3","Date of Visit","31892083","0","12 Feb 2026 10:17:22:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 10:17:22.577","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","2953401","Week I-0 (1)","7","Date of Visit","32210464","0","24 Feb 2026 14:01:54:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 14:01:54.087","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","2955298","Week I-2 (1)","8","Date of Visit","32244534","0","11 Mar 2026 08:03:12:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 08:03:12.537","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","2999596","Week I-4 (1)","9","Date of Visit","32844677","0","26 Mar 2026 08:08:04:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 08:08:04.437","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","3034861","Week I-8 (1)","10","Date of Visit","33304609","0","21 Apr 2026 08:02:02:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 08:02:02.787","","" +"BEL","9585","DD5-BE10004","AZ St. Lucas","195325","BE100042001","6330","3079509","Week I-12 (1)","11","Date of Visit","33924753","0","21 May 2026 12:30:39:140","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 12:30:39.140","","" +"BEL","9627","DD5-BE10006","Ghent University Hospital","211172","BE100062001","6330","3200561","Screening","3","Date of Visit","35150352","0","19 May 2026 13:07:05:060","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 13:07:05.060","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","2960207","Screening","3","Date of Visit","32318548","0","13 Mar 2026 09:33:50:287","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 09:33:50.287","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","3011975","Week I-0 (1)","7","Date of Visit","33011882","0","18 Mar 2026 12:17:56:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 12:17:56.120","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","3016707","Week I-2 (1)","8","Date of Visit","33074391","0","31 Mar 2026 10:30:47:507","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 10:30:47.507","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","3042838","Week I-4 (1)","9","Date of Visit","33406907","0","09 Apr 2026 12:00:04:177","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 12:00:04.177","","" +"BEL","9602","DD5-BE10007","Cliniques Universitaires Saint Luc","196754","BE100072001","6330","3057390","Week I-8 (1)","10","Date of Visit","33601343","0","08 May 2026 09:33:36:293","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 09:33:36.293","","" +"BEL","9586","DD5-BE10011","huderf","204887","BE100111001","6330","3133568","Screening","3","Date of Visit","34662833","0","20 May 2026 09:33:31:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 09:33:31.617","","" +"BRA","9168","DD5-BR10001","Pesquisare Saude","204619","BR100012001","6330","3128095","Screening","3","Date of Visit","34571838","0","04 May 2026 15:34:36:367","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 15:34:36.367","","" +"BRA","9168","DD5-BR10001","Pesquisare Saude","211122","BR100012002","6330","3199374","Screening","3","Date of Visit","35133433","0","18 May 2026 13:28:56:260","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 13:28:56.260","","" +"BRA","9168","DD5-BR10001","Pesquisare Saude","211218","BR100012003","6330","3201554","Screening","3","Date of Visit","35165318","0","19 May 2026 13:54:20:467","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 13:54:20.467","","" +"BRA","9265","DD5-BR10003","ATO Terapias","210888","BR100031001","6330","3194516","Screening","3","Date of Visit","35062015","0","14 May 2026 12:53:28:350","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 12:53:28.350","","" +"BRA","9265","DD5-BR10003","ATO Terapias","210904","BR100032001","6330","3194796","Screening","3","Date of Visit","35065941","0","14 May 2026 14:14:45:950","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 14:14:45.950","","" +"BRA","9265","DD5-BR10003","ATO Terapias","210911","BR100032002","6330","3194937","Screening","3","Date of Visit","35068080","0","14 May 2026 15:40:19:593","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 15:40:19.593","","" +"BRA","9255","DD5-BR10011","UNESP","211440","BR100112001","6330","3206278","Screening","3","Date of Visit","35226144","0","21 May 2026 11:40:18:990","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 11:40:18.990","","" +"BRA","9255","DD5-BR10011","UNESP","211458","BR100112002","6330","3206572","Screening","3","Date of Visit","35229801","0","21 May 2026 12:35:22:353","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 12:35:22.353","","" +"BRA","9284","DD5-BR10012","Liga Norte Riograndense Contra O Cancer","201491","BR100122001","6330","3058304","Screening","3","Date of Visit","33612037","0","10 Apr 2026 16:21:26:473","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 16:21:26.473","","" +"BRA","9302","DD5-BR10013","Hospital De Clinicas De Porto Alegre","202471","BR100132001","6330","3078310","Screening","3","Date of Visit","33906489","0","22 Apr 2026 12:20:04:907","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 12:20:04.907","","" +"BRA","9302","DD5-BR10013","Hospital De Clinicas De Porto Alegre","203110","BR100132002","6330","3092881","Screening","3","Date of Visit","34117340","0","24 Apr 2026 20:19:19:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 20:19:19.133","","" +"BRA","9302","DD5-BR10013","Hospital De Clinicas De Porto Alegre","203161","BR100132003","6330","3093952","Screening","3","Date of Visit","34128278","0","25 Apr 2026 14:01:26:713","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260425 14:01:26.713","","" +"BRA","9302","DD5-BR10013","Hospital De Clinicas De Porto Alegre","204063","BR100132004","6330","3115275","Screening","3","Date of Visit","34372782","0","30 Apr 2026 20:25:58:953","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 20:25:58.953","","" +"BRA","9303","DD5-BR10015","Solare Trials","211234","BR100152001","6330","3201858","Screening","3","Date of Visit","35168904","0","19 May 2026 16:09:22:333","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 16:09:22.333","","" +"BRA","9303","DD5-BR10015","Solare Trials","211235","BR100152002","6330","3201874","Screening","3","Date of Visit","35169086","0","19 May 2026 16:12:20:707","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 16:12:20.707","","" +"BRA","9303","DD5-BR10015","Solare Trials","211240","BR100152003","6330","3202030","Screening","3","Date of Visit","35171332","0","19 May 2026 18:45:59:120","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 18:45:59.120","","" +"BRA","9303","DD5-BR10015","Solare Trials","211242","BR100152004","6330","3202052","Screening","3","Date of Visit","35171487","0","19 May 2026 18:49:25:210","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 18:49:25.210","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","197779","BR100162001","6330","2981912","Screening","3","Date of Visit","32592295","0","20 May 2026 14:44:31:953","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 14:44:31.953","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","197779","BR100162001","6330","3045161","Week I-0 (1)","7","Date of Visit","33443243","0","20 May 2026 14:44:31:963","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 14:44:31.963","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","197779","BR100162001","6330","3047357","Week I-2 (1)","8","Date of Visit","33475579","0","14 May 2026 11:49:37:010","Tier 1","SDVTier","No","Did this visit occur?","CONTINUING","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","MISSED VISIT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 11:49:37.010","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","197779","BR100162001","6330","3119383","Week I-4 (1)","9","Date of Visit","34451206","0","20 May 2026 14:44:31:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 14:44:31.977","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","200736","BR100162002","6330","3043125","Screening","3","Date of Visit","33410239","0","06 May 2026 18:17:18:947","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 18:17:18.947","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","200736","BR100162002","6330","3131645","Week I-0 (1)","7","Date of Visit","34628791","0","06 May 2026 19:04:27:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 19:04:27.677","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","200736","BR100162002","6330","3135430","Week I-2 (1)","8","Date of Visit","34698682","0","22 May 2026 16:48:27:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 16:48:27.570","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","211330","BR100162003","6330","3203852","Screening","3","Date of Visit","35195459","0","21 May 2026 16:31:31:700","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 16:31:31.700","","" +"BRA","9305","DD5-BR10016","CDC - Centro Digestivo de Curitiba","211476","BR100162004","6330","3206869","Screening","3","Date of Visit","35233195","0","22 May 2026 17:07:06:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 17:07:06.517","","" +"BRA","9310","DD5-BR10017","BR Trials","201922","BR100172001","6330","3067648","Screening","3","Date of Visit","33740974","0","16 Apr 2026 12:08:15:253","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 12:08:15.253","","" +"BRA","9310","DD5-BR10017","BR Trials","210757","BR100172002","6330","3191955","Screening","3","Date of Visit","35025958","0","14 May 2026 16:45:34:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 16:45:34.153","","" +"BRA","9310","DD5-BR10017","BR Trials","211351","BR100172003","6330","3204177","Screening","3","Date of Visit","35199305","0","22 May 2026 11:18:20:103","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 11:18:20.103","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","200603","BR100182001","6330","3040675","Screening","3","Date of Visit","33381699","0","07 May 2026 17:47:20:587","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 17:47:20.587","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","201062","BR100182002","6330","3049706","Screening","3","Date of Visit","33504550","0","06 Apr 2026 12:35:34:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 12:35:34.460","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","201062","BR100182002","6330","3194524","Week I-0 (1)","7","Date of Visit","35062168","0","14 May 2026 19:07:36:750","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 19:07:36.750","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","201067","BR100182003","6330","3049797","Screening","3","Date of Visit","33505515","0","07 May 2026 18:49:33:217","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 18:49:33.217","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","202446","BR100182004","6330","3077796","Screening","3","Date of Visit","33898795","0","20 Apr 2026 14:02:03:960","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 14:02:03.960","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","2938095","Screening","3","Date of Visit","31995641","0","20 Mar 2026 13:57:09:943","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 13:57:09.943","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","3038672","Week I-0 (1)","7","Date of Visit","33359752","0","10 Apr 2026 18:51:11:427","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 18:51:11.427","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","3060511","Week I-2 (1)","8","Date of Visit","33638167","0","10 Apr 2026 18:58:53:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 18:58:53.630","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","3060518","Week I-4 (1)","9","Date of Visit","33638258","0","23 Apr 2026 20:43:32:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 20:43:32.043","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195726","BR100222001","6330","3089841","Week I-8 (1)","10","Date of Visit","34086012","0","22 May 2026 15:30:08:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 15:30:08.347","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195728","BR100222002","6330","2938110","Screening","3","Date of Visit","31995817","0","08 Mar 2026 20:07:57:887","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260308 20:07:57.887","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195728","BR100222002","6330","3047390","Week I-0 (1)","7","Date of Visit","33476194","0","08 May 2026 11:13:41:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 11:13:41.780","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195728","BR100222002","6330","3167770","Week I-2 (1)","8","Date of Visit","34824011","0","08 May 2026 13:19:15:530","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 13:19:15.530","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","195728","BR100222002","6330","3168281","Week I-4 (1)","9","Date of Visit","34831160","0","08 May 2026 13:33:36:143","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 13:33:36.143","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","197670","BR100222003","6330","2979592","Screening","3","Date of Visit","32560354","0","07 May 2026 20:33:29:717","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 20:33:29.717","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","199251","BR100222004","6330","3014106","Screening","3","Date of Visit","33040553","0","01 Apr 2026 18:39:24:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 18:39:24.510","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","199251","BR100222004","6330","3115590","Week I-0 (1)","7","Date of Visit","34377148","0","08 May 2026 15:18:44:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 15:18:44.683","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","199251","BR100222004","6330","3168462","Week I-2 (1)","8","Date of Visit","34833335","0","13 May 2026 19:52:27:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 19:52:27.460","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","200753","BR100222005","6330","3043437","Screening","3","Date of Visit","33414414","0","01 Apr 2026 12:18:24:647","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 12:18:24.647","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","200753","BR100222005","6330","3135084","Week I-0 (1)","7","Date of Visit","34690828","0","20 May 2026 19:06:03:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 19:06:03.043","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","200753","BR100222005","6330","3204456","Week I-2 (1)","8","Date of Visit","35202794","0","20 May 2026 19:09:06:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 19:09:06.880","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","203914","BR100222006","6330","3112810","Screening","3","Date of Visit","34332431","0","07 May 2026 20:10:02:563","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 20:10:02.563","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","210473","BR100222007","6330","3186181","Screening","3","Date of Visit","34939291","0","11 May 2026 15:06:35:637","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 15:06:35.637","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","210608","BR100222008","6330","3189005","Screening","3","Date of Visit","34982469","0","18 May 2026 19:51:04:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 19:51:04.447","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","210612","BR100222009","6330","3189098","Screening","3","Date of Visit","34983526","0","18 May 2026 21:18:26:763","Tier 5","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 21:18:26.763","","" +"BRA","9809","DD5-BR10024","Complexo Hospitalar de Niteroi","201933","BR100242001","6330","3067979","Screening","3","Date of Visit","33744488","0","07 May 2026 18:34:46:347","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 18:34:46.347","","" +"BRA","9809","DD5-BR10024","Complexo Hospitalar de Niteroi","210799","BR100242002","6330","3192604","Screening","3","Date of Visit","35031835","0","13 May 2026 17:56:57:027","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 17:56:57.027","","" +"BRA","9809","DD5-BR10024","Complexo Hospitalar de Niteroi","211644","BR100242003","6330","3210124","Screening","3","Date of Visit","35275550","0","22 May 2026 15:57:48:440","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 15:57:48.440","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","2963202","Screening","3","Date of Visit","32354949","0","02 Mar 2026 12:07:25:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 12:07:25.630","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3052069","Week I-0 (1)","7","Date of Visit","33533124","0","08 Apr 2026 18:04:47:763","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 18:04:47.763","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3055594","Week I-2 (1)","8","Date of Visit","33577821","0","20 Apr 2026 14:19:51:633","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 14:19:51.633","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3078344","Week I-4 (1)","9","Date of Visit","33906977","0","06 May 2026 17:10:04:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 17:10:04.120","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3189365","Unscheduled 20260512","59","Date of Visit","34987145","0","12 May 2026 19:26:45:093","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","12 MAY 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BLOOD SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 19:26:45.093","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","196895","BR100252001","6330","3207395","Unscheduled 20260520","59","Date of Visit","35239312","0","21 May 2026 17:12:38:477","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BLOOD SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 17:12:38.477","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","210884","BR100252002","6330","3194453","Screening","3","Date of Visit","35061151","0","14 May 2026 19:42:26:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 19:42:26.463","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","210966","BR100252003","6330","3196521","Screening","3","Date of Visit","35094894","0","20 May 2026 11:30:35:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 11:30:35.007","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","211200","BR100252004","6330","3201234","Screening","3","Date of Visit","35162135","0","22 May 2026 12:40:44:680","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:40:44.680","","" +"BRA","9276","DD5-BR10025","Hospital das Clinicas do HC/UFMG","211436","BR100252005","6330","3206230","Screening","3","Date of Visit","35225496","0","22 May 2026 13:53:16:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 13:53:16.093","","" +"BRA","9278","DD5-BR10028","Hospital Ernesto Dornelles","204086","BR100282001","6330","3115734","Screening","3","Date of Visit","34380342","0","29 Apr 2026 13:53:13:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 13:53:13.557","","" +"BRA","9278","DD5-BR10028","Hospital Ernesto Dornelles","204086","BR100282001","6330","3201419","Week I-0 (1)","7","Date of Visit","35163614","0","22 May 2026 14:40:05:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 14:40:05.837","","" +"BRA","9306","DD5-BR10029","INTEGRAL Pesquisa e Ensino","200732","BR100292001","6330","3043023","Screening","3","Date of Visit","33409167","0","08 Apr 2026 19:21:44:117","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 19:21:44.117","","" +"BRA","9306","DD5-BR10029","INTEGRAL Pesquisa e Ensino","201061","BR100292002","6330","3049695","Screening","3","Date of Visit","33504472","0","08 Apr 2026 19:33:00:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 19:33:00.577","","" +"BRA","9306","DD5-BR10029","INTEGRAL Pesquisa e Ensino","201061","BR100292002","6330","3196636","Week I-0 (1)","7","Date of Visit","35096257","0","19 May 2026 10:58:44:467","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 10:58:44.467","","" +"BRA","9306","DD5-BR10029","INTEGRAL Pesquisa e Ensino","211322","BR100292003","6330","3203688","Screening","3","Date of Visit","35193344","0","22 May 2026 12:09:16:740","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:09:16.740","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","197782","BR100302001","6330","2981971","Screening","3","Date of Visit","32593044","0","31 Mar 2026 19:17:52:457","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 19:17:52.457","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","198826","BR100302002","6330","3005034","Screening","3","Date of Visit","32919451","0","22 Apr 2026 19:34:30:440","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 19:34:30.440","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","200869","BR100302003","6330","3045766","Screening","3","Date of Visit","33452460","0","09 Apr 2026 12:31:24:277","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 12:31:24.277","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","200869","BR100302003","6330","3194765","Week I-0 (1)","7","Date of Visit","35065674","0","15 May 2026 17:58:12:577","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 17:58:12.577","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","204069","BR100302004","6330","3115354","Screening","3","Date of Visit","34373565","0","15 May 2026 18:58:14:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 18:58:14.237","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","2901178","Screening","3","Date of Visit","31478092","0","30 Jan 2026 16:20:15:653","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260130 16:20:15.653","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","2977405","Week I-0 (1)","7","Date of Visit","32534248","0","04 Mar 2026 19:02:54:850","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 19:02:54.850","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","2977629","Week I-2 (1)","8","Date of Visit","32537539","0","19 Mar 2026 14:03:30:057","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 14:03:30.057","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","3019864","Week I-4 (1)","9","Date of Visit","33112144","0","01 Apr 2026 17:14:49:417","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 17:14:49.417","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","193919","CA100012001","6330","3045661","Week I-8 (1)","10","Date of Visit","33451296","0","29 Apr 2026 15:33:46:257","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 15:33:46.257","","" +"CAN","9711","DD5-CA10001","Barrie GI Associates","210604","CA100012002","6330","3188896","Screening","3","Date of Visit","34981406","0","13 May 2026 18:40:58:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 18:40:58.430","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","2945251","Screening","3","Date of Visit","32095045","0","23 Mar 2026 16:44:24:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 16:44:24.803","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","3023317","Week I-0 (1)","7","Date of Visit","33152604","0","23 Mar 2026 15:59:24:383","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 15:59:24.383","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","3026580","Week I-2 (1)","8","Date of Visit","33195490","0","07 Apr 2026 20:27:37:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 20:27:37.163","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","3052526","Week I-4 (1)","9","Date of Visit","33539187","0","16 Apr 2026 17:45:24:467","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 17:45:24.467","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","196029","CA100042001","6330","3071954","Week I-8 (1)","10","Date of Visit","33811218","0","13 May 2026 16:56:44:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 16:56:44.337","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","198515","CA100042002","6330","2998652","Screening","3","Date of Visit","32833850","0","08 May 2026 21:13:54:517","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 21:13:54.517","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","199859","CA100042003","6330","3026854","Screening","3","Date of Visit","33199604","0","23 Apr 2026 17:21:01:260","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 17:21:01.260","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","199859","CA100042003","6330","3081843","Week I-0 (1)","7","Date of Visit","33960504","0","27 Apr 2026 17:20:59:480","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 17:20:59.480","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","199859","CA100042003","6330","3112736","Week I-2 (1)","8","Date of Visit","34331774","0","04 May 2026 18:27:49:533","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 18:27:49.533","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","201486","CA100042004","6330","3058202","Screening","3","Date of Visit","33610766","0","20 May 2026 21:00:58:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 21:00:58.640","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","201486","CA100042004","6330","3201863","Week I-0 (1)","7","Date of Visit","35169061","0","21 May 2026 15:59:20:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 15:59:20.087","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","202807","CA100042005","6330","3086019","Screening","3","Date of Visit","34023404","0","22 Apr 2026 17:29:10:047","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 17:29:10.047","","" +"CAN","9743","DD5-CA10005","CHUM - Centre hospitalier universitaire de Montreal","202458","CA100052001","6330","3078075","Screening","3","Date of Visit","33903197","0","20 Apr 2026 14:31:23:977","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 14:31:23.977","","" +"CAN","9743","DD5-CA10005","CHUM - Centre hospitalier universitaire de Montreal","202967","CA100052002","6330","3089459","Screening","3","Date of Visit","34080535","0","04 May 2026 14:18:13:073","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 14:18:13.073","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","187326","CA100062001","6330","2762650","Screening","3","Date of Visit","29632158","0","06 Jan 2026 22:27:18:377","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260106 22:27:18.377","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2817399","Screening","3","Date of Visit","30398928","0","12 Dec 2025 15:56:05:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251212 15:56:05.120","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2888929","Week I-0 (1)","7","Date of Visit","31319700","0","26 Jan 2026 18:27:05:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260126 18:27:05.347","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2897107","Week I-2 (1)","8","Date of Visit","31429358","0","05 Feb 2026 15:22:02:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 15:22:02.700","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2918295","Week I-4 (1)","9","Date of Visit","31701286","0","17 Feb 2026 18:04:18:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 18:04:18.180","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","2942307","Week I-8 (1)","10","Date of Visit","32055268","0","18 Mar 2026 19:53:54:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 19:53:54.630","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","3017677","Week I-12 (1)","11","Date of Visit","33087143","0","10 Apr 2026 20:26:32:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 20:26:32.267","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","190085","CA100062002","6330","3060584","Week M-4 (1)","15","Date of Visit","33638874","0","07 May 2026 14:56:05:300","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 14:56:05.300","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2904880","Screening","3","Date of Visit","31524760","0","29 Jan 2026 16:55:16:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 16:55:16.617","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2951838","Week I-0 (1)","7","Date of Visit","32186789","0","24 Feb 2026 17:45:30:343","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 17:45:30.343","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2955790","Week I-2 (1)","8","Date of Visit","32252518","0","09 Mar 2026 17:54:46:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 17:54:46.447","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2995210","Week I-4 (1)","9","Date of Visit","32786530","0","10 Mar 2026 21:30:59:830","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PER PI PT. TO DISCONTINUE TREATMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 21:30:59.830","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2998797","Induction Early Discontinuation (1)","12","Date of Visit","32836096","0","10 Mar 2026 21:31:56:803","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 21:31:56.803","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2998798","Induction Safety Follow Up (1)","13","Date of Visit","32836097","0","06 Apr 2026 21:00:42:307","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 21:00:42.307","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","3001777","Unscheduled 20260309","59","Date of Visit","32996901","0","07 May 2026 17:22:01:383","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTION STOOL PARASITE SCREEN-NEGATIVE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 17:22:01.383","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","195441","CA100072002","6330","2933585","Screening","3","Date of Visit","31922552","0","16 Mar 2026 20:51:57:533","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 20:51:57.533","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","2947322","Screening","3","Date of Visit","32123417","0","25 Feb 2026 18:38:12:387","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 18:38:12.387","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","3004631","Week I-0 (1)","7","Date of Visit","32914237","0","12 Mar 2026 20:39:14:083","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 20:39:14.083","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","3005221","Week I-2 (1)","8","Date of Visit","32922313","0","24 Mar 2026 19:30:44:587","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 19:30:44.587","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","3030407","Week I-4 (1)","9","Date of Visit","33244865","0","07 Apr 2026 18:10:09:720","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 18:10:09.720","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","196132","CA100072003","6330","3052419","Week I-8 (1)","10","Date of Visit","33537725","0","05 May 2026 18:53:06:863","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 18:53:06.863","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","2995390","Screening","3","Date of Visit","32788494","0","02 Apr 2026 21:45:23:820","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 21:45:23.820","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3065597","Week I-0 (1)","7","Date of Visit","33705384","0","16 Apr 2026 21:09:27:687","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 21:09:27.687","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3072330","Week I-2 (1)","8","Date of Visit","33816550","0","04 May 2026 17:36:03:020","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT BEING DISCONTINUED","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 17:36:03.020","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3128267","Induction Early Discontinuation (1)","12","Date of Visit","34573975","0","04 May 2026 19:17:49:297","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 19:17:49.297","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3128268","Induction Safety Follow Up (1)","13","Date of Visit","34573976","0","21 May 2026 21:18:40:443","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 21:18:40.443","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3052387","Unscheduled 20260407","59","Date of Visit","33537263","0","07 Apr 2026 17:43:58:363","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","07 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","RECOLLECTION OF SCREENING SAMPLE (HEMATOLOGY) AS PREVIOUSLY SAMPLES UNRESULTED.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 17:43:58.363","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3128245","Unscheduled 20260416","59","Date of Visit","34573626","0","04 May 2026 17:10:58:563","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","16 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SIGMOIDOSCOPY COMPLETED FOR PATIENT RELATED TO WORSENING IN UC. PATIENT WAS DIAGNOSED WITH CMV COLITIS","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 17:10:58.563","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","3128246","Unscheduled 20260422","59","Date of Visit","34573637","0","04 May 2026 17:13:27:783","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","PATIENT CAME IN FOR ASSESSMENT. DURING VISIT IT WAS NOTED THAT RIGHT LEG WAS VERY SWOLLEN. PATIENT WAS SENT TO THE EMERGENCY DEPARTMENT FOR FOLLOW UP","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 17:13:27.783","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","211360","CA100072005","6330","3204431","Screening","3","Date of Visit","35202443","0","21 May 2026 19:18:47:947","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 19:18:47.947","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","187054","CA100082001","6330","2756461","Screening","3","Date of Visit","29542947","0","09 Jan 2026 16:13:52:600","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 16:13:52.600","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","2929753","Screening","3","Date of Visit","31861336","0","11 Feb 2026 18:38:20:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 18:38:20.600","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","2977331","Week I-0 (1)","7","Date of Visit","32533554","0","05 Mar 2026 13:49:39:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 13:49:39.833","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","2979913","Week I-2 (1)","8","Date of Visit","32565037","0","13 Mar 2026 17:15:50:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 17:15:50.617","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","3007548","Week I-4 (1)","9","Date of Visit","32953064","0","02 Apr 2026 17:18:46:380","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 17:18:46.380","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","195225","CA100082002","6330","3047556","Week I-8 (1)","10","Date of Visit","33478147","0","29 Apr 2026 18:58:13:383","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 18:58:13.383","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","200619","CA100082003","6330","3040874","Screening","3","Date of Visit","33384168","0","30 Mar 2026 16:59:45:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 16:59:45.547","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","200619","CA100082003","6330","3124979","Week I-0 (1)","7","Date of Visit","34516679","0","30 Apr 2026 18:05:26:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 18:05:26.350","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","200619","CA100082003","6330","3125206","Week I-2 (1)","8","Date of Visit","34520300","0","14 May 2026 19:07:51:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 19:07:51.453","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","2942115","Screening","3","Date of Visit","32053240","0","23 Feb 2026 15:46:44:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 15:46:44.433","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","3019890","Week I-0 (1)","7","Date of Visit","33112523","0","19 Mar 2026 21:31:24:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 21:31:24.213","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","3020565","Week I-2 (1)","8","Date of Visit","33121184","0","30 Apr 2026 19:54:13:540","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 26MAR2026 > UC FLARE","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 19:54:13.540","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","3045641","Induction Early Discontinuation (1)","12","Date of Visit","33451067","0","30 Apr 2026 15:25:22:830","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 15:25:22.830","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","3125319","Induction Safety Follow Up (1)","13","Date of Visit","34521709","0","19 May 2026 12:52:56:887","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 12:52:56.887","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2829867","Screening","3","Date of Visit","30556566","0","30 Apr 2026 20:05:20:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 20:05:20.317","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2888447","Week I-0 (1)","7","Date of Visit","31313903","0","21 Jan 2026 19:29:30:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 19:29:30.007","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2891477","Week I-2 (1)","8","Date of Visit","31351489","0","03 Feb 2026 15:56:01:260","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 15:56:01.260","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2912770","Week I-4 (1)","9","Date of Visit","31627373","0","17 Feb 2026 15:17:11:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 15:17:11.000","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","2941830","Week I-8 (1)","10","Date of Visit","32049418","0","21 Mar 2026 21:21:20:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260321 21:21:20.683","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","3023723","Week I-12 (1)","11","Date of Visit","33157768","0","19 Apr 2026 16:45:18:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260419 16:45:18.527","","" +"CAN","9752","DD5-CA10011","Viable Clinical Research","190599","CA100112001","6330","3075935","Week M-4 (1)","15","Date of Visit","33867030","0","15 May 2026 12:43:19:480","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 12:43:19.480","","" +"CAN","9724","DD5-CA10012","West GTA Endoscopy","189365","CA100122001","6330","2802143","Screening","3","Date of Visit","30198596","0","27 Apr 2026 14:39:14:277","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 14:39:14.277","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","200328","CH100022001","6330","3036032","Screening","3","Date of Visit","33319905","0","27 Mar 2026 08:31:09:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 08:31:09.173","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","200328","CH100022001","6330","3070399","Week I-0 (1)","7","Date of Visit","33783524","0","17 Apr 2026 08:36:15:270","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 08:36:15.270","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","200328","CH100022001","6330","3073375","Week I-2 (1)","8","Date of Visit","33832429","0","28 Apr 2026 11:59:04:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:59:04.887","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","200328","CH100022001","6330","3115067","Week I-4 (1)","9","Date of Visit","34368077","0","12 May 2026 14:24:30:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 14:24:30.587","","" +"CHE","9461","DD5-CH10002","Department of Visceral Surgery and Medicine","205137","CH100022002","6330","3138786","Screening","3","Date of Visit","34751924","0","08 May 2026 12:10:26:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 12:10:26.717","","" +"CHE","9510","DD5-CH10003","HOCH Health Ostschweiz Kantonsspital St.Gallen","202541","CH100032001","6330","3079993","Screening","3","Date of Visit","33931270","0","07 May 2026 14:42:34:277","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 14:42:34.277","","" +"CHE","9510","DD5-CH10003","HOCH Health Ostschweiz Kantonsspital St.Gallen","202541","CH100032001","6330","3198636","Unscheduled 20260427","59","Date of Visit","35123353","0","18 May 2026 09:51:28:407","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","27 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","PATIENT GOT WORSE, SEE SAE ""ASUC""","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 09:51:28.407","","" +"CHE","9478","DD5-CH10004","University Hospital Zurich","204552","CH100042001","6330","3126598","Screening","3","Date of Visit","34541893","0","06 May 2026 09:53:39:343","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 09:53:39.343","","" +"CHE","9478","DD5-CH10004","University Hospital Zurich","204552","CH100042001","6330","3205099","Week I-0 (1)","7","Date of Visit","35211818","0","21 May 2026 15:59:53:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 15:59:53.303","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","187091","CN100012001","6330","2757153","Screening","3","Date of Visit","29551385","0","06 Jan 2026 11:35:14:157","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260106 11:35:14.157","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2789184","Screening","3","Date of Visit","29996635","0","11 Dec 2025 09:15:01:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251211 09:15:01.823","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2859504","Week I-0 (1)","7","Date of Visit","30960927","0","05 Jan 2026 05:48:25:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260105 05:48:25.213","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2861549","Week I-2 (1)","8","Date of Visit","30984319","0","15 Jan 2026 10:09:42:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260115 10:09:42.843","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2879414","Week I-4 (1)","9","Date of Visit","31205490","0","30 Jan 2026 06:42:03:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260130 06:42:03.463","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2905687","Week I-8 (1)","10","Date of Visit","31533858","0","28 Feb 2026 06:25:28:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 FEB 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260228 06:25:28.830","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2964388","Week I-12 (1)","11","Date of Visit","32365724","0","26 Mar 2026 09:24:17:577","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 09:24:17.577","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","3035135","Induction Safety Follow Up (1)","13","Date of Visit","33308327","0","27 Apr 2026 07:24:54:880","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 07:24:54.880","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2826666","Screening","3","Date of Visit","30515710","0","12 Dec 2025 09:19:59:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251212 09:19:59.567","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2857782","Week I-0 (1)","7","Date of Visit","30938679","0","31 Dec 2025 08:54:19:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251231 08:54:19.557","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2859801","Week I-2 (1)","8","Date of Visit","30964649","0","16 Jan 2026 06:08:53:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260116 06:08:53.960","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2880914","Week I-4 (1)","9","Date of Visit","31224857","0","02 Feb 2026 10:26:36:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 10:26:36.723","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2908630","Week I-8 (1)","10","Date of Visit","31572898","0","28 Feb 2026 06:20:16:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 FEB 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260228 06:20:16.303","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2964384","Week I-12 (1)","11","Date of Visit","32365707","0","27 Mar 2026 07:18:27:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 07:18:27.340","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","3037448","Week M-4 (1)","15","Date of Visit","33340529","0","27 Apr 2026 08:04:45:593","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","THE SUBJECT REQUESTED DISCONTINUE THE TREATMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 08:04:45.593","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","3111221","Maintenance Early Discontinuation (1)","27","Date of Visit","34311369","0","27 Apr 2026 08:06:14:870","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 08:06:14.870","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","3111222","Maintenance Safety Follow Up (1)","28","Date of Visit","34311370","0","22 May 2026 03:33:48:083","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 03:33:48.083","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","201857","CN100012004","6330","3066248","Screening","3","Date of Visit","33713910","0","14 May 2026 03:17:13:807","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 03:17:13.807","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","201986","CN100012005","6330","3069186","Screening","3","Date of Visit","33762556","0","09 May 2026 10:19:04:323","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260509 10:19:04.323","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","201986","CN100012005","6330","3169178","Week I-0 (1)","7","Date of Visit","34842860","0","12 May 2026 07:35:57:050","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 07:35:57.050","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2863173","Screening","3","Date of Visit","31006068","0","06 Feb 2026 02:42:47:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 02:42:47.897","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2930686","Week I-0 (1)","7","Date of Visit","31876063","0","12 Feb 2026 08:23:43:493","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 08:23:43.493","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2931267","Week I-2 (1)","8","Date of Visit","31886847","0","27 Feb 2026 08:27:44:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 08:27:44.433","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2962516","Week I-4 (1)","9","Date of Visit","32347036","0","16 Mar 2026 07:20:50:613","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 07:20:50.613","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","3008872","Week I-8 (1)","10","Date of Visit","32968292","0","19 May 2026 09:50:56:800","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","07 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 09:50:56.800","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","3064470","Week I-12 (1)","11","Date of Visit","33690879","0","29 Apr 2026 09:01:01:003","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","THE PATIENT HAS WITHDRAWN INFORMED CONSENT.","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 09:01:01.003","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","3200947","Induction Early Discontinuation (1)","12","Date of Visit","35156188","0","19 May 2026 09:56:49:830","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 09:56:49.830","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","3117079","Induction Safety Follow Up (1)","13","Date of Visit","35156187","0","19 May 2026 10:15:50:970","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","WITHDRAWL OF THE INFORMED CONSENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 10:15:50.970","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","202506","CN100022002","6330","3079039","Screening","3","Date of Visit","33917613","0","29 Apr 2026 09:20:55:290","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 09:20:55.290","","" +"CHN","9577","DD5-CN10004","The Second Affiliated Hospital of Guangzhou Medical University","192890","CN100042001","6330","2879453","Screening","3","Date of Visit","31205882","0","09 May 2026 10:07:12:783","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260509 10:07:12.783","","" +"CHN","9780","DD5-CN10005","The Second Affiliatted Hospital of Soochow University","204136","CN100052001","6330","3116844","Screening","3","Date of Visit","34396908","0","20 May 2026 12:45:40:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 12:45:40.237","","" +"CHN","9448","DD5-CN10007","Shengjing Hospital Of China Medical University","203252","CN100072001","6330","3096617","Screening","3","Date of Visit","34160694","0","27 Apr 2026 02:18:59:250","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 02:18:59.250","","" +"CHN","9448","DD5-CN10007","Shengjing Hospital Of China Medical University","204106","CN100072002","6330","3116300","Screening","3","Date of Visit","34389156","0","29 Apr 2026 01:03:32:960","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 01:03:32.960","","" +"CHN","9448","DD5-CN10007","Shengjing Hospital Of China Medical University","208734","CN100072003","6330","3169157","Screening","3","Date of Visit","34842427","0","11 May 2026 02:05:47:583","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 02:05:47.583","","" +"CHN","9448","DD5-CN10007","Shengjing Hospital Of China Medical University","211149","CN100072004","6330","3200085","Screening","3","Date of Visit","35141783","0","19 May 2026 01:11:50:610","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 01:11:50.610","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","199816","CN100082001","6330","3025949","Screening","3","Date of Visit","33187745","0","26 Mar 2026 10:43:52:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 10:43:52.150","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","199816","CN100082001","6330","3116395","Week I-0 (1)","7","Date of Visit","34390812","0","30 Apr 2026 03:36:32:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 03:36:32.153","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","199816","CN100082001","6330","3119750","Week I-2 (1)","8","Date of Visit","34456755","0","14 May 2026 06:18:19:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 06:18:19.287","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","201625","CN100082002","6330","3061141","Screening","3","Date of Visit","33645337","0","15 Apr 2026 08:42:02:187","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 08:42:02.187","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","201625","CN100082002","6330","3116388","Week I-0 (1)","7","Date of Visit","34390636","0","30 Apr 2026 04:03:42:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 04:03:42.530","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","201625","CN100082002","6330","3119772","Week I-2 (1)","8","Date of Visit","34457023","0","13 May 2026 08:32:33:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 08:32:33.157","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","211023","CN100082003","6330","3197698","Screening","3","Date of Visit","35109853","0","25 May 2026 05:59:02:257","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 05:59:02.257","","" +"CHN","9325","DD5-CN10008","The first affiliated hospital of Henan University of science and technology","211153","CN100082004","6330","3200134","Screening","3","Date of Visit","35142663","0","25 May 2026 06:15:10:557","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 06:15:10.557","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","198078","CN100112001","6330","2989281","Screening","3","Date of Visit","32700563","0","24 Mar 2026 05:50:08:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 05:50:08.613","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","198078","CN100112001","6330","3058578","Week I-0 (1)","7","Date of Visit","33617215","0","15 Apr 2026 03:56:55:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 03:56:55.580","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","198078","CN100112001","6330","3066258","Week I-2 (1)","8","Date of Visit","33713992","0","24 Apr 2026 11:26:38:953","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 11:26:38.953","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","198078","CN100112001","6330","3092507","Week I-4 (1)","9","Date of Visit","34113034","0","08 May 2026 08:39:05:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 08:39:05.207","","" +"CHN","9528","DD5-CN10011","Chongqing General Hospital","211654","CN100112002","6330","3210733","Screening","3","Date of Visit","35285404","0","25 May 2026 02:19:30:790","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 02:19:30.790","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199433","CN100132001","6330","3017905","Screening","3","Date of Visit","33089977","0","09 Apr 2026 06:53:54:520","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 06:53:54.520","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199433","CN100132001","6330","3082276","Week I-0 (1)","7","Date of Visit","33966752","0","28 Apr 2026 06:14:25:480","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 06:14:25.480","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199433","CN100132001","6330","3113472","Week I-2 (1)","8","Date of Visit","34340441","0","07 May 2026 03:22:10:970","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 03:22:10.970","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199433","CN100132001","6330","3135666","Week I-4 (1)","9","Date of Visit","34702736","0","22 May 2026 08:10:17:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 08:10:17.583","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199434","CN100132002","6330","3017917","Screening","3","Date of Visit","33090115","0","22 May 2026 08:51:32:233","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 08:51:32.233","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199719","CN100132003","6330","3024003","Screening","3","Date of Visit","33161655","0","22 May 2026 10:09:32:810","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 10:09:32.810","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199719","CN100132003","6330","3089972","Week I-0 (1)","7","Date of Visit","34087926","0","22 May 2026 10:09:32:833","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 10:09:32.833","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199719","CN100132003","6330","3113976","Week I-2 (1)","8","Date of Visit","34348486","0","22 May 2026 10:09:32:857","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 10:09:32.857","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","202816","CN100132004","6330","3086344","Screening","3","Date of Visit","34027966","0","07 May 2026 03:16:47:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 03:16:47.763","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","191658","CN100152001","6330","2852189","Screening","3","Date of Visit","30856673","0","07 Jan 2026 08:23:51:987","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260107 08:23:51.987","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2865022","Screening","3","Date of Visit","31028887","0","07 Jan 2026 07:44:42:263","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260107 07:44:42.263","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2905283","Week I-0 (1)","7","Date of Visit","31530473","0","30 Jan 2026 08:07:41:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260130 08:07:41.627","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2905859","Week I-2 (1)","8","Date of Visit","31536300","0","13 Feb 2026 07:09:06:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 07:09:06.247","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2934831","Week I-4 (1)","9","Date of Visit","31943280","0","27 Feb 2026 06:26:42:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 06:26:42.630","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","2962095","Week I-8 (1)","10","Date of Visit","32343194","0","25 Mar 2026 07:18:33:420","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 07:18:33.420","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","3031311","Week I-12 (1)","11","Date of Visit","33257137","0","28 Apr 2026 09:14:58:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 09:14:58.980","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","192235","CN100152002","6330","3091683","Week M-4 (1)","15","Date of Visit","34105266","0","18 May 2026 08:12:03:653","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 08:12:03.653","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","2934003","Screening","3","Date of Visit","31927634","0","06 Mar 2026 10:59:44:167","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 10:59:44.167","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","2989269","Week I-0 (1)","7","Date of Visit","32700415","0","11 Mar 2026 13:46:44:993","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 13:46:44.993","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","3001471","Week I-2 (1)","8","Date of Visit","32870270","0","25 Mar 2026 11:02:43:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 11:02:43.517","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","3032248","Week I-4 (1)","9","Date of Visit","33270988","0","10 Apr 2026 04:41:23:290","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 04:41:23.290","","" +"CHN","9579","DD5-CN10017","Huizhou Central People's Hospital","195460","CN100172001","6330","3058723","Week I-8 (1)","10","Date of Visit","33618830","0","01 May 2026 04:14:57:343","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 04:14:57.343","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","2883625","Screening","3","Date of Visit","31254821","0","11 Mar 2026 01:12:54:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 01:12:54.210","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","2938183","Week I-0 (1)","7","Date of Visit","31997032","0","11 Mar 2026 02:28:17:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 02:28:17.297","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","2998995","Week I-2 (1)","8","Date of Visit","32838201","0","11 Mar 2026 12:36:02:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 12:36:02.757","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","3001096","Week I-4 (1)","9","Date of Visit","32865562","0","20 Mar 2026 06:04:34:377","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 06:04:34.377","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","3020955","Week I-8 (1)","10","Date of Visit","33125443","0","29 Apr 2026 07:31:47:953","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 07:31:47.953","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","193081","CN100212001","6330","3073391","Week I-12 (1)","11","Date of Visit","33832702","0","20 May 2026 05:01:23:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 05:01:23.763","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","210940","CN100212002","6330","3195907","Screening","3","Date of Visit","35082655","0","15 May 2026 07:25:37:243","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 07:25:37.243","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","211178","CN100212003","6330","3200674","Screening","3","Date of Visit","35152296","0","19 May 2026 08:37:35:397","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 08:37:35.397","","" +"CHN","9019","DD5-CN10021","The First Affiliated Hospital of Anhui Medical University","211367","CN100212004","6330","3204734","Screening","3","Date of Visit","35207815","0","21 May 2026 02:51:32:920","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 02:51:32.920","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","193486","CN100222001","6330","2891682","Screening","3","Date of Visit","31355282","0","03 Feb 2026 03:32:30:023","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 03:32:30.023","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","202352","CN100222002","6330","3076073","Screening","3","Date of Visit","33868332","0","28 Apr 2026 10:42:31:597","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 10:42:31.597","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","202352","CN100222002","6330","3202383","Week I-0 (1)","7","Date of Visit","35176566","0","22 May 2026 05:13:41:380","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 05:13:41.380","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","208733","CN100222003","6330","3169143","Screening","3","Date of Visit","34842248","0","15 May 2026 02:26:59:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 02:26:59.070","","" +"CHN","9529","DD5-CN10023","Meihekou Central Hospital","194579","CN100232001","6330","2915696","Screening","3","Date of Visit","31661945","0","18 Mar 2026 06:47:35:607","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 06:47:35.607","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2886485","Screening","3","Date of Visit","31289860","0","23 Jan 2026 01:44:21:067","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 01:44:21.067","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2924623","Week I-0 (1)","7","Date of Visit","31789114","0","10 Feb 2026 06:08:59:673","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 06:08:59.673","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2924661","Week I-2 (1)","8","Date of Visit","31789767","0","25 Feb 2026 02:39:12:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 02:39:12.657","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2956209","Week I-4 (1)","9","Date of Visit","32258072","0","10 Mar 2026 03:42:48:327","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 03:42:48.327","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","2995661","Week I-8 (1)","10","Date of Visit","32792269","0","14 Apr 2026 10:23:41:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 10:23:41.697","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","193227","CN100242001","6330","3064785","Week I-12 (1)","11","Date of Visit","33694595","0","08 May 2026 02:00:18:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 02:00:18.387","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","197147","CN100242002","6330","2968150","Screening","3","Date of Visit","32406729","0","14 Apr 2026 10:19:39:047","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 10:19:39.047","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","208736","CN100242003","6330","3169258","Screening","3","Date of Visit","34844006","0","11 May 2026 04:49:20:947","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 04:49:20.947","","" +"CHN","9748","DD5-CN10025","Heilongjiang Provincial Hospital","199143","CN100252001","6330","3011828","Screening","3","Date of Visit","33009172","0","30 Apr 2026 08:47:38:190","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 08:47:38.190","","" +"CHN","9748","DD5-CN10025","Heilongjiang Provincial Hospital","200525","CN100252002","6330","3039852","Screening","3","Date of Visit","33372136","0","14 Apr 2026 09:39:35:363","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 09:39:35.363","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","200792","CN100262001","6330","3044261","Screening","3","Date of Visit","33430118","0","21 May 2026 04:37:42:083","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 04:37:42.083","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","200792","CN100262001","6330","3138659","Week I-0 (1)","7","Date of Visit","34750263","0","21 May 2026 04:42:13:333","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 04:42:13.333","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","202643","CN100262002","6330","3082242","Screening","3","Date of Visit","33966052","0","22 Apr 2026 01:52:47:450","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 01:52:47.450","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","203949","CN100262003","6330","3113156","Screening","3","Date of Visit","34336521","0","22 May 2026 11:38:10:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 11:38:10.850","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","210805","CN100262004","6330","3192867","Screening","3","Date of Visit","35036429","0","14 May 2026 03:15:44:520","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 03:15:44.520","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","2886378","Screening","3","Date of Visit","31288362","0","28 Jan 2026 07:54:10:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 07:54:10.870","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","2964360","Week I-0 (1)","7","Date of Visit","32365465","0","06 Mar 2026 09:48:09:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 09:48:09.583","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","2981701","Week I-2 (1)","8","Date of Visit","32590364","0","20 Mar 2026 11:26:41:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 11:26:41.290","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","3022182","Week I-4 (1)","9","Date of Visit","33137579","0","31 Mar 2026 13:33:29:910","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 13:33:29.910","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","193222","CN100272001","6330","3043262","Week I-8 (1)","10","Date of Visit","33412208","0","30 Apr 2026 07:09:17:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:09:17.837","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","194314","CN100272002","6330","2909916","Screening","3","Date of Visit","31588352","0","27 Mar 2026 10:33:46:473","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 10:33:46.473","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","202981","CN100272003","6330","3089940","Screening","3","Date of Visit","34087527","0","24 Apr 2026 01:45:53:370","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 01:45:53.370","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","211540","CN100272004","6330","3207915","Screening","3","Date of Visit","35248033","0","22 May 2026 02:43:19:920","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 02:43:19.920","","" +"CHN","9182","DD5-CN10028","Affiliated Hospital of Hainan Medical University","201672","CN100282001","6330","3061947","Screening","3","Date of Visit","33655813","0","13 Apr 2026 10:41:03:097","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 10:41:03.097","","" +"CHN","9361","DD5-CN10030","The affiliated hospital of Southwest Medical University","210630","CN100302001","6330","3189561","Screening","3","Date of Visit","34990242","0","13 May 2026 01:47:09:467","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 01:47:09.467","","" +"CHN","9361","DD5-CN10030","The affiliated hospital of Southwest Medical University","211255","CN100302002","6330","3202330","Screening","3","Date of Visit","35175561","0","20 May 2026 01:21:11:937","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 01:21:11.937","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193488","CN100312001","6330","2891734","Screening","3","Date of Visit","31356145","0","03 Mar 2026 07:34:13:860","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 07:34:13.860","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","2897744","Screening","3","Date of Visit","31435883","0","19 May 2026 09:08:20:280","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 09:08:20.280","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","2995502","Week I-0 (1)","7","Date of Visit","32789987","0","12 Mar 2026 03:27:43:667","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 03:27:43.667","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","3002848","Week I-2 (1)","8","Date of Visit","32888275","0","24 Mar 2026 10:07:18:100","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 10:07:18.100","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","3028734","Week I-4 (1)","9","Date of Visit","33222676","0","07 Apr 2026 06:27: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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 06:27:17.787","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","3050793","Week I-8 (1)","10","Date of Visit","33516248","0","19 May 2026 09:26:05:880","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 09:26:05.880","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","3200855","Induction Early Discontinuation (1)","12","Date of Visit","35155048","0","19 May 2026 09:26:30:843","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 09:26:30.843","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","199293","CN100312003","6330","3015021","Screening","3","Date of Visit","33052098","0","17 Apr 2026 07:12:53:437","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 07:12:53.437","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","200377","CN100322001","6330","3036902","Screening","3","Date of Visit","33331047","0","15 Apr 2026 05:25:16:117","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 05:25:16.117","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","200377","CN100322001","6330","3116310","Week I-0 (1)","7","Date of Visit","34389439","0","08 May 2026 07:06:40:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 07:06:40.200","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","200377","CN100322001","6330","3138643","Week I-2 (1)","8","Date of Visit","34749938","0","25 May 2026 03:50:02:900","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 03:50:02.900","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","201624","CN100322002","6330","3061106","Screening","3","Date of Visit","33644634","0","17 Apr 2026 06:07:46:333","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 06:07:46.333","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","201624","CN100322002","6330","3195604","Week I-0 (1)","7","Date of Visit","35078601","0","20 May 2026 11:55:27:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 11:55:27.957","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","210496","CN100322003","6330","3186913","Screening","3","Date of Visit","34951686","0","12 May 2026 04:00:16:390","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 04:00:16.390","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","2884164","Screening","3","Date of Visit","31262338","0","28 Jan 2026 04:10:23:893","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 04:10:23.893","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","2924640","Week I-0 (1)","7","Date of Visit","31789347","0","11 Feb 2026 13:31:49:513","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 13:31:49.513","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","2929591","Week I-2 (1)","8","Date of Visit","31858696","0","27 Feb 2026 08:55:10:480","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 08:55:10.480","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","2962594","Week I-4 (1)","9","Date of Visit","32348342","0","13 Mar 2026 03:11:09:620","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 03:11:09.620","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","3005426","Week I-8 (1)","10","Date of Visit","32925094","0","10 Apr 2026 09:51:58:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 09:51:58.400","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193111","CN100331001","6330","3059567","Week I-12 (1)","11","Date of Visit","33627387","0","09 May 2026 11:29:26:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260509 11:29:26.857","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","2914752","Screening","3","Date of Visit","31648177","0","08 Feb 2026 07:43:45:013","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260208 07:43:45.013","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","2958833","Week I-0 (1)","7","Date of Visit","32298898","0","26 Feb 2026 12:38:15:190","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 12:38:15.190","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","2960380","Week I-2 (1)","8","Date of Visit","32321326","0","13 Mar 2026 09:41:32:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 09:41:32.743","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","3006359","Week I-4 (1)","9","Date of Visit","32937873","0","26 Mar 2026 16:05:16:143","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 16:05:16.143","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","3036434","Week I-8 (1)","10","Date of Visit","33324381","0","28 Apr 2026 02:47:27:473","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 02:47:27.473","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","194536","CN100331002","6330","3113197","Week I-12 (1)","11","Date of Visit","34336897","0","25 May 2026 09:50:10:170","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 09:50:10.170","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","2874092","Screening","3","Date of Visit","31138776","0","22 Jan 2026 07:31:02:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 07:31:02.737","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","2924504","Week I-0 (1)","7","Date of Visit","31787455","0","11 Feb 2026 09:34:10:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 09:34:10.483","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","2928930","Week I-2 (1)","8","Date of Visit","31849437","0","27 Feb 2026 09:11:26:467","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 09:11:26.467","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","2962619","Week I-4 (1)","9","Date of Visit","32348663","0","13 Mar 2026 09:45:13:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 09:45:13.430","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","3006375","Week I-8 (1)","10","Date of Visit","32938053","0","14 Apr 2026 03:48:59:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 03:48:59.753","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","192657","CN100332001","6330","3063288","Week I-12 (1)","11","Date of Visit","33675666","0","11 May 2026 10:13:27:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 10:13:27.213","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193388","CN100332002","6330","2889345","Screening","3","Date of Visit","31324748","0","03 Feb 2026 02:51:27:033","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 02:51:27.033","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","202817","CN100332003","6330","3086363","Screening","3","Date of Visit","34028255","0","28 Apr 2026 06:05:27:253","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 06:05:27.253","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","202817","CN100332003","6330","3202412","Week I-0 (1)","7","Date of Visit","35177085","0","22 May 2026 01:03:14:650","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 01:03:14.650","","" +"CHN","9480","DD5-CN10034","Ruijin Hospital Shanghai Jiao Tong University","211556","CN100341001","6330","3208289","Screening","3","Date of Visit","35253081","0","22 May 2026 06:51:38:503","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 06:51:38.503","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","2905358","Screening","3","Date of Visit","31531147","0","28 Feb 2026 01:50:10:480","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260228 01:50:10.480","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","2968216","Week I-0 (1)","7","Date of Visit","32407480","0","10 Mar 2026 04:31:39:197","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 04:31:39.197","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","2995699","Week I-2 (1)","8","Date of Visit","32792702","0","18 Mar 2026 08:28:23:243","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 08:28:23.243","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","3015715","Week I-4 (1)","9","Date of Visit","33060181","0","02 Apr 2026 06:07:03:333","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 06:07:03.333","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","194088","CN100352001","6330","3046343","Week I-8 (1)","10","Date of Visit","33461708","0","27 Apr 2026 07:19:03:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 07:19:03.000","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","196836","CN100352002","6330","2961824","Screening","3","Date of Visit","32339412","0","28 Feb 2026 02:40:20:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260228 02:40:20.047","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","196836","CN100352002","6330","3046022","Week I-0 (1)","7","Date of Visit","33456477","0","09 Apr 2026 09:22:07:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 09:22:07.237","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","196836","CN100352002","6330","3056876","Week I-2 (1)","8","Date of Visit","33595832","0","16 Apr 2026 06:26:09:073","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 06:26:09.073","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","196836","CN100352002","6330","3068940","Week I-4 (1)","9","Date of Visit","33759262","0","29 Apr 2026 06:59:33:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 06:59:33.030","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","197470","CN100352003","6330","2975364","Screening","3","Date of Visit","32509477","0","10 Mar 2026 08:38:14:720","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 08:38:14.720","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","197470","CN100352003","6330","3061025","Week I-0 (1)","7","Date of Visit","33643664","0","12 May 2026 09:17:03:203","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 09:17:03.203","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","197470","CN100352003","6330","3069145","Week I-2 (1)","8","Date of Visit","33761879","0","27 Apr 2026 07:39:21:573","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 07:39:21.573","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","197470","CN100352003","6330","3111130","Week I-4 (1)","9","Date of Visit","34310403","0","11 May 2026 09:19:58:673","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 09:19:58.673","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","200961","CN100352004","6330","3047783","Screening","3","Date of Visit","33481361","0","10 Apr 2026 09:39:36:620","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 09:39:36.620","","" +"CHN","9025","DD5-CN10035","Taian City Central Hospital","200961","CN100352004","6330","3189625","Week I-0 (1)","7","Date of Visit","34991535","0","14 May 2026 01:58:20:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 01:58:20.920","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","199870","CN100361001","6330","3027061","Screening","3","Date of Visit","33202723","0","01 Apr 2026 05:14:24:193","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 05:14:24.193","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","2895782","Screening","3","Date of Visit","31412179","0","03 Feb 2026 07:13:52:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 07:13:52.047","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","2956195","Week I-0 (1)","7","Date of Visit","32257958","0","02 Mar 2026 03:19:26:593","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 03:19:26.593","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","2964927","Week I-2 (1)","8","Date of Visit","32370451","0","13 Mar 2026 08:48:54:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 08:48:54.107","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","3006153","Week I-4 (1)","9","Date of Visit","32934538","0","26 Mar 2026 07:44:32:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 07:44:32.463","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","3034783","Week I-8 (1)","10","Date of Visit","33303843","0","21 Apr 2026 06:15:05:877","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 06:15:05.877","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","193654","CN100362001","6330","3079199","Week I-12 (1)","11","Date of Visit","33919632","0","21 May 2026 02:55:12:380","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 02:55:12.380","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","201858","CN100362002","6330","3066257","Screening","3","Date of Visit","33713973","0","27 Apr 2026 04:25:32:220","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 04:25:32.220","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","201858","CN100362002","6330","3202374","Week I-0 (1)","7","Date of Visit","35176230","0","23 May 2026 01:19:13:197","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260523 01:19:13.197","","" +"CHN","9690","DD5-CN10038","The Central Hospital of Wuhan","210495","CN100382001","6330","3186837","Screening","3","Date of Visit","34950454","0","20 May 2026 06:06:54:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 06:06:54.027","","" +"CHN","9189","DD5-CN10039","The First Affiliated Hospital of Ningbo University","191584","CN100392001","6330","2850009","Screening","3","Date of Visit","30822088","0","05 Jan 2026 08:16:26:170","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260105 08:16:26.170","","" +"CHN","9782","DD5-CN10040","Affiliated Hospital of Zunyi Medical University","202351","CN100402001","6330","3076065","Screening","3","Date of Visit","33868275","0","13 May 2026 05:38:15:693","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 05:38:15.693","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892067","Screening","3","Date of Visit","31359746","0","29 Apr 2026 13:32:37:760","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 13:32:37.760","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","06 May 2026 07:06:39:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:06:39.787","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","3082595","Week I-12 (1)","11","Date of Visit","33970356","0","18 May 2026 07:04:06:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 07:04:06.580","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957354","Screening","3","Date of Visit","32277668","0","29 Apr 2026 13:41:31:490","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 13:41:31.490","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 05:43:05.867","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","3052820","Week I-2 (1)","8","Date of Visit","33544491","0","06 May 2026 07:08:42:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:08:42.183","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","3132969","Week I-4 (1)","9","Date of Visit","34646649","0","06 May 2026 07:11:20:060","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:11:20.060","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","204115","CZ100012003","6330","3116494","Screening","3","Date of Visit","34392070","0","05 May 2026 09:12:30:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 09:12:30.347","","" +"CZE","9707","DD5-CZ10003","Gastromedic, Ltd.","210634","CZ100032001","6330","3189738","Screening","3","Date of Visit","34994309","0","13 May 2026 13:23:57:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 13:23:57.287","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","2934312","Screening","3","Date of Visit","31932393","0","19 May 2026 13:18:58:263","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 13:18:58.263","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260412 18:13:09.703","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","3060953","Week I-4 (1)","9","Date of Visit","33643053","0","16 May 2026 10:19:42:537","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260516 10:19:42.537","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","3197362","Week I-8 (1)","10","Date of Visit","35106375","0","18 May 2026 18:51:20:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 18:51:20.007","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076150","Screening","3","Date of Visit","33869435","0","16 May 2026 19:58:32:897","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260516 19:58:32.897","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 09:50:06.007","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","200677","CZ100092001","6330","3129676","Week I-0 (1)","7","Date of Visit","34593504","0","12 May 2026 18:46:43:240","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 18:46:43.240","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 11:57:45.937","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3088807","Week I-4 (1)","9","Date of Visit","34069070","0","11 May 2026 11:02:49:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 11:02:49.280","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 09:17:41.950","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3187346","Week I-0 (1)","7","Date of Visit","34959328","0","18 May 2026 06:43:41:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 06:43:41.517","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","204894","CZ100132003","6330","3133641","Screening","3","Date of Visit","34663722","0","18 May 2026 06:55:48:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 06:55:48.753","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 19:26:15.497","","" +"CZE","9759","DD5-CZ10020","Fakultni Thomayerova nemocnice","201661","CZ100201001","6330","3198267","Week I-0 (1)","7","Date of Visit","35117663","0","19 May 2026 14:55:11:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 14:55:11.877","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","04 May 2026 06:26:43:593","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 06:26:43.593","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","3126363","Week I-8 (1)","10","Date of Visit","34536390","0","04 May 2026 06:27:02:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 06:27:02.323","","" +"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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 06:45:23.183","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3086931","Week I-4 (1)","9","Date of Visit","34035672","0","05 May 2026 09:30:00:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 09:30:00.837","","" +"DEU","9561","DD5-DE10001","Universitaetsklinik Erlangen","203843","DE100012001","6330","3111438","Screening","3","Date of Visit","34313106","0","21 May 2026 05:34:41:773","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 05:34:41.773","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","2910840","Screening","3","Date of Visit","31596721","0","03 Feb 2026 12:37:48:023","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 12:37:48.023","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","2959554","Week I-0 (1)","7","Date of Visit","32308934","0","26 Feb 2026 12:41:49:600","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 12:41:49.600","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","2960418","Week I-2 (1)","8","Date of Visit","32321729","0","20 Mar 2026 11:05:39:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAR 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 11:05:39.823","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","3022060","Week I-4 (1)","9","Date of Visit","33136649","0","27 Mar 2026 11:39:14:547","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 11:39:14.547","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","3038117","Week I-8 (1)","10","Date of Visit","33350431","0","23 Apr 2026 06:58:24:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 06:58:24.770","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","194361","DE100022001","6330","3086973","Week I-12 (1)","11","Date of Visit","34036171","0","21 May 2026 11:53:28:860","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 11:53:28.860","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","2978623","Screening","3","Date of Visit","32549923","0","12 Mar 2026 12:49:48:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 12:49:48.397","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","3018523","Week I-0 (1)","7","Date of Visit","33097177","0","20 Mar 2026 08:59:03:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 08:59:03.580","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","3021456","Week I-2 (1)","8","Date of Visit","33130874","0","02 Apr 2026 10:48:44:777","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 10:48:44.777","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","3047030","Week I-4 (1)","9","Date of Visit","33471258","0","16 Apr 2026 11:51:53:103","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 11:51:53.103","","" +"DEU","9534","DD5-DE10002","Krankenhaus Waldfriede Mitte","197631","DE100022002","6330","3070357","Week I-8 (1)","10","Date of Visit","33782986","0","13 May 2026 11:33:35:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 11:33:35.207","","" +"DEU","9459","DD5-DE10006","Universitatsklinikum Schleswig Holstein Kiel","202000","DE100062001","6330","3069369","Screening","3","Date of Visit","33765450","0","17 Apr 2026 09:29:55:887","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 09:29:55.887","","" +"DEU","9459","DD5-DE10006","Universitatsklinikum Schleswig Holstein Kiel","202000","DE100062001","6330","3126750","Week I-0 (1)","7","Date of Visit","34545296","0","06 May 2026 09:39:35:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 09:39:35.340","","" +"DEU","9459","DD5-DE10006","Universitatsklinikum Schleswig Holstein Kiel","202000","DE100062001","6330","3133880","Week I-2 (1)","8","Date of Visit","34667906","0","18 May 2026 09:17:58:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 09:17:58.340","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","197657","DE100102001","6330","2979270","Screening","3","Date of Visit","32557339","0","12 Mar 2026 07:32:32:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 07:32:32.050","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","197657","DE100102001","6330","3044648","Week I-0 (1)","7","Date of Visit","33436898","0","02 Apr 2026 11:29:07:863","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 11:29:07.863","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","197657","DE100102001","6330","3047115","Week I-2 (1)","8","Date of Visit","33472332","0","22 Apr 2026 11:19:58:643","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 11:19:58.643","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","197657","DE100102001","6330","3084260","Week I-4 (1)","9","Date of Visit","33992707","0","15 May 2026 10:33:41:860","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 10:33:41.860","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","200305","DE100102002","6330","3035562","Screening","3","Date of Visit","33313177","0","27 Mar 2026 12:02:26:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 12:02:26.617","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","200305","DE100102002","6330","3077178","Week I-0 (1)","7","Date of Visit","33886192","0","22 Apr 2026 13:10:39:817","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 13:10:39.817","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","200305","DE100102002","6330","3084948","Week I-2 (1)","8","Date of Visit","34001577","0","15 May 2026 11:05:41:947","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 11:05:41.947","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","200305","DE100102002","6330","3196500","Week I-4 (1)","9","Date of Visit","35094697","0","22 May 2026 07:19:38:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:19:38.033","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","201659","DE100102003","6330","3061781","Screening","3","Date of Visit","33654151","0","22 Apr 2026 09:01:28:437","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 09:01:28.437","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","201659","DE100102003","6330","3126751","Week I-0 (1)","7","Date of Visit","34545308","0","05 May 2026 14:02:51:483","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 14:02:51.483","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","201659","DE100102003","6330","3131942","Week I-2 (1)","8","Date of Visit","34633083","0","22 May 2026 07:12:41:237","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:12:41.237","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","202869","DE100102004","6330","3087549","Screening","3","Date of Visit","34045158","0","15 May 2026 10:59:20:293","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 10:59:20.293","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","2976808","Screening","3","Date of Visit","32527754","0","05 Mar 2026 10:37:39:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 10:37:39.393","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","3039671","Week I-0 (1)","7","Date of Visit","33369981","0","31 Mar 2026 08:34:54:923","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 08:34:54.923","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","3042401","Week I-2 (1)","8","Date of Visit","33402073","0","16 Apr 2026 09:50:34:210","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 09:50:34.210","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","3069648","Week I-4 (1)","9","Date of Visit","33770537","0","28 Apr 2026 08:19:13:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 08:19:13.010","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","197532","DE100152001","6330","3134505","Unscheduled 20260304","59","Date of Visit","34680053","0","06 May 2026 12:18:22:430","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","04 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SITE ERROR","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 12:18:22.430","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","202394","DE100152002","6330","3076825","Screening","3","Date of Visit","33880572","0","21 Apr 2026 07:53:11:903","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 07:53:11.903","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","199511","DE100162001","6330","3019660","Screening","3","Date of Visit","33110021","0","20 May 2026 07:28:58:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 07:28:58.440","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","199511","DE100162001","6330","3080357","Week I-0 (1)","7","Date of Visit","33934727","0","21 Apr 2026 15:08:37:573","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 15:08:37.573","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","199511","DE100162001","6330","3081596","Week I-2 (1)","8","Date of Visit","33957283","0","06 May 2026 12:28:17:360","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 12:28:17.360","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","199511","DE100162001","6330","3134568","Week I-4 (1)","9","Date of Visit","34681720","0","20 May 2026 06:37:55:513","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 06:37:55.513","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","202371","DE100162002","6330","3076428","Screening","3","Date of Visit","33873389","0","20 Apr 2026 11:37:37:657","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 11:37:37.657","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","202371","DE100162002","6330","3128865","Week I-0 (1)","7","Date of Visit","34581395","0","05 May 2026 09:03:56:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 09:03:56.987","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","202371","DE100162002","6330","3129582","Week I-2 (1)","8","Date of Visit","34592416","0","19 May 2026 08:51:50:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 08:51:50.350","","" +"DEU","9440","DD5-DE10016","Staedtisches Klinikum Lueneburg","204863","DE100162003","6330","3132959","Screening","3","Date of Visit","34646542","0","06 May 2026 13:59:35:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 13:59:35.527","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","2928849","Screening","3","Date of Visit","31847611","0","11 Feb 2026 16:00:44:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 16:00:44.413","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","2965325","Week I-0 (1)","7","Date of Visit","32374251","0","02 Mar 2026 14:57:59:107","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 14:57:59.107","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","2967497","Week I-2 (1)","8","Date of Visit","32397847","0","18 Mar 2026 12:47:46:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 12:47:46.173","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","3016823","Week I-4 (1)","9","Date of Visit","33076010","0","30 Mar 2026 12:05:13:907","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 12:05:13.907","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","195187","DE100222001","6330","3040605","Week I-8 (1)","10","Date of Visit","33380924","0","27 Apr 2026 09:51:54:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 09:51:54.723","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","2950988","Screening","3","Date of Visit","32171614","0","04 Mar 2026 16:17:07:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 16:17:07.100","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","3031804","Week I-0 (1)","7","Date of Visit","33263554","0","25 Mar 2026 15:26:02:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 15:26:02.217","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","3033266","Week I-2 (1)","8","Date of Visit","33282029","0","08 Apr 2026 13:38:44:763","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 13:38:44.763","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","3054933","Week I-4 (1)","9","Date of Visit","33570977","0","22 Apr 2026 11:32:51:523","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 11:32:51.523","","" +"DEU","9562","DD5-DE10022","Universitaetsklinikum Ulm","196307","DE100222002","6330","3084374","Week I-8 (1)","10","Date of Visit","33993901","0","20 May 2026 10:28:25:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 10:28:25.433","","" +"DEU","9471","DD5-DE10023","Medizinisches Versorgungszentrum (MVZ) Dachau","202679","DE100232001","6330","3083104","Screening","3","Date of Visit","33976651","0","21 May 2026 10:21:12:843","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 10:21:12.843","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2892652","Screening","3","Date of Visit","31367375","0","07 May 2026 06:29:01:490","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 06:29:01.490","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2916492","Week I-0 (1)","7","Date of Visit","31671995","0","06 Feb 2026 12:20:37:903","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 12:20:37.903","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2920420","Week I-2 (1)","8","Date of Visit","31730987","0","18 Feb 2026 14:14:48:633","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260218 14:14:48.633","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2944646","Week I-4 (1)","9","Date of Visit","32085881","0","04 Mar 2026 13:11:04:647","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 13:11:04.647","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","2977008","Week I-8 (1)","10","Date of Visit","32530108","0","02 Apr 2026 05:51:03:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 05:51:03.213","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193533","DE100252001","6330","3046317","Week I-12 (1)","11","Date of Visit","33461369","0","30 Apr 2026 07:34:22:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:34:22.560","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","2900238","Screening","3","Date of Visit","31467855","0","07 May 2026 06:29:43:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 06:29:43.710","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","2943613","Week I-0 (1)","7","Date of Visit","32071924","0","13 Apr 2026 09:19:59:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 09:19:59.930","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","2945923","Week I-2 (1)","8","Date of Visit","32102772","0","04 Mar 2026 13:11:35:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 13:11:35.980","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","2977010","Week I-4 (1)","9","Date of Visit","32530126","0","17 Mar 2026 14:08:14:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 14:08:14.247","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","3013948","Week I-8 (1)","10","Date of Visit","33039080","0","16 Apr 2026 05:39:47:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 05:39:47.600","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","193878","DE100252002","6330","3068843","Week I-12 (1)","11","Date of Visit","33757469","0","21 May 2026 08:18:55:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 08:18:55.307","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","2940624","Screening","3","Date of Visit","32033409","0","07 May 2026 06:30:29:117","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 06:30:29.117","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","2989891","Week I-0 (1)","7","Date of Visit","32709578","0","18 May 2026 10:03:30:867","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 10:03:30.867","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","2995960","Week I-2 (1)","8","Date of Visit","32796349","0","24 Mar 2026 12:23:38:820","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 12:23:38.820","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","3029543","Week I-4 (1)","9","Date of Visit","33232810","0","09 Apr 2026 05:49:13:863","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 05:49:13.863","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","195818","DE100252003","6330","3056005","Week I-8 (1)","10","Date of Visit","33583096","0","08 May 2026 09:36:53:520","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 09:36:53.520","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","201833","DE100252004","6330","3065504","Screening","3","Date of Visit","33704043","0","18 May 2026 10:28:31:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 10:28:31.113","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","201833","DE100252004","6330","3208255","Week I-0 (1)","7","Date of Visit","35252716","0","22 May 2026 07:45:33:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:45:33.437","","" +"DEU","9472","DD5-DE10025","Universitaetsmedizin Rostock","211423","DE100252005","6330","3206015","Screening","3","Date of Visit","35222531","0","21 May 2026 10:18:47:740","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 10:18:47.740","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","193876","DE100262001","6330","2900207","Screening","3","Date of Visit","31467530","0","22 May 2026 06:12:24:470","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 06:12:24.470","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","193965","DE100262002","6330","2902437","Screening","3","Date of Visit","31492812","0","22 May 2026 06:13:23:560","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 06:13:23.560","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","194053","DE100262003","6330","2904529","Screening","3","Date of Visit","31522436","0","22 May 2026 06:13:53:627","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 06:13:53.627","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","194933","DE100262004","6330","2923386","Screening","3","Date of Visit","31770625","0","22 May 2026 06:14:23:507","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 06:14:23.507","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","195865","DE100262005","6330","2941490","Screening","3","Date of Visit","32045414","0","22 May 2026 06:15:24:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 06:15:24.753","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","195865","DE100262005","6330","3041923","Week I-0 (1)","7","Date of Visit","33397295","0","31 Mar 2026 08:46:21:203","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 08:46:21.203","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","195865","DE100262005","6330","3042442","Week I-2 (1)","8","Date of Visit","33402595","0","15 Apr 2026 07:03:21:327","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 07:03:21.327","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","195865","DE100262005","6330","3066580","Week I-4 (1)","9","Date of Visit","33718757","0","22 May 2026 06:23:48:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 06:23:48.810","","" +"DEU","9507","DD5-DE10036","Universitaetsklinikum der RWTH Aachen","200323","DE100361001","6330","3035905","Screening","3","Date of Visit","33318316","0","15 May 2026 08:10:34:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 08:10:34.657","","" +"DEU","9507","DD5-DE10036","Universitaetsklinikum der RWTH Aachen","200323","DE100361001","6330","3079555","Week I-0 (1)","7","Date of Visit","33925667","0","21 Apr 2026 12:56:10:777","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 12:56:10.777","","" +"DEU","9507","DD5-DE10036","Universitaetsklinikum der RWTH Aachen","200323","DE100361001","6330","3080990","Week I-2 (1)","8","Date of Visit","33950364","0","05 May 2026 06:36:11:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 06:36:11.107","","" +"DEU","9507","DD5-DE10036","Universitaetsklinikum der RWTH Aachen","200323","DE100361001","6330","3128945","Week I-4 (1)","9","Date of Visit","34582875","0","20 May 2026 11:28:20:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 11:28:20.707","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","2889806","Screening","3","Date of Visit","31329674","0","21 Jan 2026 11:25:02:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 11:25:02.553","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","2939261","Week I-0 (1)","7","Date of Visit","32013385","0","17 Feb 2026 09:03:43:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 09:03:43.833","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","2940650","Week I-2 (1)","8","Date of Visit","32033872","0","02 Mar 2026 07:03:01:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 07:03:01.400","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","2965160","Week I-4 (1)","9","Date of Visit","32372711","0","18 Mar 2026 10:40:06:993","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 10:40:06.993","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","3016285","Week I-8 (1)","10","Date of Visit","33069597","0","14 Apr 2026 10:29:54:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 10:29:54.440","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","193410","ES100032001","6330","3064851","Week I-12 (1)","11","Date of Visit","33694924","0","19 May 2026 11:50:45:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 11:50:45.497","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","198588","ES100032002","6330","3000052","Screening","3","Date of Visit","32849928","0","07 Apr 2026 10:24:09:610","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 10:24:09.610","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","198588","ES100032002","6330","3079606","Week I-0 (1)","7","Date of Visit","33926374","0","24 Apr 2026 11:00:50:823","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 11:00:50.823","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","198588","ES100032002","6330","3092431","Week I-2 (1)","8","Date of Visit","34112353","0","07 May 2026 09:29:49:910","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 09:29:49.910","","" +"ESP","9398","DD5-ES10003","HOSP. UNIV. INFANTA LEONOR","198588","ES100032002","6330","3136640","Week I-4 (1)","9","Date of Visit","34720949","0","19 May 2026 11:58:12:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 11:58:12.223","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2850599","Screening","3","Date of Visit","30829497","0","12 Jan 2026 14:55:29:643","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260112 14:55:29.643","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2898689","Week I-0 (1)","7","Date of Visit","31447333","0","30 Jan 2026 16:22:30:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260130 16:22:30.347","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2907037","Week I-2 (1)","8","Date of Visit","31551280","0","09 Feb 2026 11:31:33:917","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 11:31:33.917","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2922720","Week I-4 (1)","9","Date of Visit","31761470","0","09 Mar 2026 15:11:26:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 15:11:26.960","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2994933","Week I-8 (1)","10","Date of Visit","32782923","0","26 Mar 2026 10:59:15:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 10:59:15.707","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","3035500","Week I-12 (1)","11","Date of Visit","33312539","0","23 Apr 2026 17:01:42:313","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 17:01:42.313","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","193890","ES100042002","6330","2900488","Screening","3","Date of Visit","31470654","0","04 Mar 2026 14:52:03:917","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 14:52:03.917","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","195830","ES100042003","6330","2940859","Screening","3","Date of Visit","32036579","0","26 Mar 2026 17:22:51:490","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 17:22:51.490","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","2973380","Screening","3","Date of Visit","32482772","0","26 Mar 2026 11:29:17:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 11:29:17.853","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3000215","Week I-0 (1)","7","Date of Visit","32852704","0","26 Mar 2026 11:28:11:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 11:28:11.133","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3035504","Week I-2 (1)","8","Date of Visit","33312594","0","26 Mar 2026 11:28:11:150","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 11:28:11.150","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3035505","Week I-4 (1)","9","Date of Visit","33312609","0","08 Apr 2026 14:39:48:120","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 14:39:48.120","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3055180","Week I-8 (1)","10","Date of Visit","33573610","0","11 May 2026 11:16:42:363","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 11:16:42.363","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197378","ES100042004","6330","3194508","Unscheduled 20260408","59","Date of Visit","35061997","0","14 May 2026 12:53:44:090","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","8 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BECAUSE THE DNA SAMPLE WAS NOT COLLECTED IN WEEK 0 BUT WAS COLLECTED IN WEEK 4","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 12:53:44.090","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197420","ES100042005","6330","2974354","Screening","3","Date of Visit","32496456","0","27 Mar 2026 12:35:26:070","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 12:35:26.070","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197420","ES100042005","6330","3063936","Week I-0 (1)","7","Date of Visit","33683833","0","20 Apr 2026 13:32:10:370","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 13:32:10.370","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197420","ES100042005","6330","3078240","Week I-2 (1)","8","Date of Visit","33905552","0","04 May 2026 08:28:32:777","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 08:28:32.777","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","197420","ES100042005","6330","3126639","Week I-4 (1)","9","Date of Visit","34542534","0","14 May 2026 12:33:14:510","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 12:33:14.510","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","204884","ES100042006","6330","3133469","Screening","3","Date of Visit","34661033","0","07 May 2026 15:02:28:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 15:02:28.030","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","204890","ES100042007","6330","3133597","Screening","3","Date of Visit","34663180","0","08 May 2026 13:03:13:643","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 13:03:13.643","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","200266","ES100052001","6330","3034782","Screening","3","Date of Visit","33303759","0","26 Mar 2026 11:27:58:370","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 11:27:58.370","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","200266","ES100052001","6330","3079314","Week I-0 (1)","7","Date of Visit","33921915","0","21 Apr 2026 08:28:50:810","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 08:28:50.810","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","200266","ES100052001","6330","3079592","Week I-2 (1)","8","Date of Visit","33926132","0","05 May 2026 07:12:37:250","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 07:12:37.250","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","200266","ES100052001","6330","3129095","Week I-4 (1)","9","Date of Visit","34584537","0","19 May 2026 07:43:43:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 07:43:43.133","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","202369","ES100052002","6330","3076409","Screening","3","Date of Visit","33873154","0","20 Apr 2026 09:18:35:460","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 09:18:35.460","","" +"ESP","9389","DD5-ES10005","HOSP. CLINICO UNIV. DE SANTIAGO","203827","ES100052003","6330","3111128","Screening","3","Date of Visit","34310339","0","28 Apr 2026 05:58:47:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 05:58:47.097","","" +"ESP","9366","DD5-ES10007","HOSP. DE CABUENES","204131","ES100072001","6330","3116766","Screening","3","Date of Visit","34395899","0","30 Apr 2026 10:31:29:467","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 10:31:29.467","","" +"ESP","9366","DD5-ES10007","HOSP. DE CABUENES","204131","ES100072001","6330","3200371","Week I-0 (1)","7","Date of Visit","35147807","0","22 May 2026 12:40:47:263","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:40:47.263","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2846286","Screening","3","Date of Visit","30770601","0","19 Dec 2025 13:43:44:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251219 13:43:44.560","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2899912","Week I-0 (1)","7","Date of Visit","31464791","0","28 Jan 2026 12:03:32:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 12:03:32.337","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2900600","Week I-2 (1)","8","Date of Visit","31471872","0","11 Feb 2026 11:54:10:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 11:54:10.567","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2929316","Week I-4 (1)","9","Date of Visit","31854524","0","23 Feb 2026 11:13:43:500","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 11:13:43.500","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","2951185","Week I-8 (1)","10","Date of Visit","32174406","0","25 Mar 2026 11:43:05:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 11:43:05.173","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","3032390","Week I-12 (1)","11","Date of Visit","33272923","0","19 May 2026 11:23:14:083","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 11:23:14.083","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","3077227","Week M-4 (1)","15","Date of Visit","33886791","0","19 May 2026 11:23:33:670","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 11:23:33.670","","" +"ESP","9433","DD5-ES10009","HOSP. ALVARO CUNQUEIRO","191443","ES100092001","6330","3077235","Unscheduled 20260420","59","Date of Visit","33886976","0","20 Apr 2026 09:55:52:357","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","REGISTRER MEASUREMENT OF HEIGH AT I-12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 09:55:52.357","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2872637","Screening","3","Date of Visit","31120366","0","12 Jan 2026 16:12:27:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260112 16:12:27.630","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2890853","Week I-0 (1)","7","Date of Visit","31343213","0","05 Feb 2026 16:32:05:393","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 16:32:05.393","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2908371","Week I-2 (1)","8","Date of Visit","31568784","0","05 Feb 2026 11:32:12:480","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 11:32:12.480","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2917294","Week I-4 (1)","9","Date of Visit","31688830","0","18 Feb 2026 09:23:04:240","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260218 09:23:04.240","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","2943775","Week I-8 (1)","10","Date of Visit","32074060","0","18 Mar 2026 14:03:12:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 14:03:12.597","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","3017088","Week I-12 (1)","11","Date of Visit","33079534","0","15 Apr 2026 08:34:45:787","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 08:34:45.787","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","192596","ES100112001","6330","3066873","Week M-4 (1)","15","Date of Visit","33723378","0","13 May 2026 11:34:26:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 11:34:26.753","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","199794","ES100112002","6330","3025359","Screening","3","Date of Visit","33179626","0","07 Apr 2026 18:05:13:157","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 18:05:13.157","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","198403","FR100012001","6330","2996659","Screening","3","Date of Visit","32807815","0","18 May 2026 12:03:09:607","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 12:03:09.607","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","202860","FR100012002","6330","3087339","Screening","3","Date of Visit","34042668","0","19 May 2026 10:48:12:850","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 10:48:12.850","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","204143","FR100012003","6330","3116984","Screening","3","Date of Visit","34398981","0","21 May 2026 14:28:36:117","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 14:28:36.117","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","204143","FR100012003","6330","3205876","Week I-0 (1)","7","Date of Visit","35221401","0","21 May 2026 14:28:36:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 14:28:36.130","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","189970","FR100022001","6330","2815039","Screening","3","Date of Visit","30362780","0","05 Feb 2026 08:37:33:613","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 08:37:33.613","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2821476","Screening","3","Date of Visit","30449661","0","10 Dec 2025 13:14:28:467","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251210 13:14:28.467","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2863632","Week I-0 (1)","7","Date of Visit","31011888","0","08 Jan 2026 09:52:37:800","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260108 09:52:37.800","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2868034","Week I-2 (1)","8","Date of Visit","31066461","0","20 Jan 2026 08:55:43:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 08:55:43.737","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2887207","Week I-4 (1)","9","Date of Visit","31299118","0","04 Feb 2026 08:57:45:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 08:57:45.020","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2913951","Week I-8 (1)","10","Date of Visit","31640648","0","03 Mar 2026 09:04:27:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 09:04:27.647","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","2969589","Week I-12 (1)","11","Date of Visit","32428576","0","30 Mar 2026 14:19:34:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 14:19:34.160","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190258","FR100022002","6330","3040901","Week M-4 (1)","15","Date of Visit","33384561","0","30 Apr 2026 06:59:30:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 06:59:30.827","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2831076","Screening","3","Date of Visit","30572192","0","15 Dec 2025 11:05:02:360","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251215 11:05:02.360","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2862377","Week I-0 (1)","7","Date of Visit","30997005","0","08 Jan 2026 13:09:34:467","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260108 13:09:34.467","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2868514","Week I-2 (1)","8","Date of Visit","31072437","0","20 Jan 2026 09:26:51:383","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 09:26:51.383","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2887340","Week I-4 (1)","9","Date of Visit","31300700","0","23 Jan 2026 08:02:15:987","Tier 5","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 21JAN2026 > WORSENING OF UC","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 08:02:15.987","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2894205","Induction Early Discontinuation (1)","12","Date of Visit","31387816","0","23 Jan 2026 08:02:35:533","Tier 5","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 08:02:35.533","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2894206","Induction Safety Follow Up (1)","13","Date of Visit","31387817","0","20 Feb 2026 08:44:06:983","Tier 5","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260220 08:44:06.983","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","2887544","Screening","3","Date of Visit","31302849","0","17 Feb 2026 10:16:57:747","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 10:16:57.747","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","2939689","Week I-0 (1)","7","Date of Visit","32020192","0","17 Feb 2026 10:16:57:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 10:16:57.767","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","2940779","Week I-2 (1)","8","Date of Visit","32035564","0","03 Mar 2026 11:05:36:990","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 11:05:36.990","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","2970385","Week I-4 (1)","9","Date of Visit","32438017","0","16 Mar 2026 15:16:57:250","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 15:16:57.250","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","3010437","Week I-8 (1)","10","Date of Visit","32992086","0","15 Apr 2026 14:11:55:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 14:11:55.267","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","193289","FR100022004","6330","3067885","Week I-12 (1)","11","Date of Visit","33743974","0","11 May 2026 14:40:06:300","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 14:40:06.300","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","2872444","Screening","3","Date of Visit","31118114","0","13 Jan 2026 14:01:52:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260113 14:01:52.537","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","2925693","Week I-0 (1)","7","Date of Visit","31803330","0","12 Feb 2026 15:12:09:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 15:12:09.440","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","2933311","Week I-2 (1)","8","Date of Visit","31918977","0","23 Feb 2026 15:06:47:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 15:06:47.720","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","2951639","Week I-4 (1)","9","Date of Visit","32182479","0","12 Mar 2026 10:17:26:380","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 10:17:26.380","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","3003864","Week I-8 (1)","10","Date of Visit","32901060","0","10 Apr 2026 07:31:52:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 07:31:52.323","","" +"FRA","9099","DD5-FR10003","CHU de Nice Hopital de l Archet","192585","FR100032001","6330","3059087","Week I-12 (1)","11","Date of Visit","33622837","0","13 May 2026 13:40:31:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 13:40:31.070","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2821396","Screening","3","Date of Visit","30448801","0","11 Dec 2025 14:58:46:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251211 14:58:46.283","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2885546","Week I-0 (1)","7","Date of Visit","31279491","0","20 Jan 2026 14:50:10:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 14:50:10.623","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2888506","Week I-2 (1)","8","Date of Visit","31314864","0","02 Feb 2026 14:32:38:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 14:32:38.913","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2909249","Week I-4 (1)","9","Date of Visit","31580204","0","17 Feb 2026 10:10:36:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 10:10:36.350","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","2940831","Week I-8 (1)","10","Date of Visit","32036243","0","15 Apr 2026 09:24:20:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 09:24:20.717","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","3067001","Week I-12 (1)","11","Date of Visit","33725408","0","17 Apr 2026 13:59:01:233","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 13:59:01.233","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","190254","FR100042001","6330","3074667","Week M-4 (1)","15","Date of Visit","33849293","0","07 May 2026 14:08:07:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 14:08:07.400","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","2932778","Screening","3","Date of Visit","31910077","0","16 Feb 2026 10:29:43:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 10:29:43.447","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","3004250","Week I-0 (1)","7","Date of Visit","32908382","0","13 Mar 2026 12:44:08:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 12:44:08.680","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","3006910","Week I-2 (1)","8","Date of Visit","32945889","0","27 Mar 2026 13:58:39:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 13:58:39.187","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","3038432","Week I-4 (1)","9","Date of Visit","33354272","0","10 Apr 2026 09:41:34:933","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 09:41:34.933","","" +"FRA","9146","DD5-FR10004","CHU Toulouse - Hopital de Rangueil","195391","FR100042002","6330","3059553","Week I-8 (1)","10","Date of Visit","33627215","0","11 May 2026 14:54:23:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 14:54:23.560","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","190687","FR100052001","6330","2831619","Screening","3","Date of Visit","30579697","0","21 Jan 2026 13:16:39:893","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 13:16:39.893","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","2922313","Screening","3","Date of Visit","31755599","0","06 Mar 2026 13:34:25:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 13:34:25.657","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","2978940","Week I-0 (1)","7","Date of Visit","32553854","0","06 Mar 2026 13:35:05:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 13:35:05.400","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","2982134","Week I-2 (1)","8","Date of Visit","32595963","0","20 Mar 2026 14:55:09:873","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 14:55:09.873","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","3022894","Week I-4 (1)","9","Date of Visit","33145284","0","01 Apr 2026 13:48:14:897","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 13:48:14.897","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","3045359","Week I-8 (1)","10","Date of Visit","33445872","0","13 Apr 2026 10:55:45:507","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 9APR2026 > RECTOCOLITIS FLARE","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 10:55:45.507","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","3058098","Induction Early Discontinuation (1)","12","Date of Visit","33609363","0","09 Apr 2026 15:49:56:917","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 15:49:56.917","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195418","FR100052003","6330","2933109","Screening","3","Date of Visit","31915885","0","16 Mar 2026 13:11:39:380","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 13:11:39.380","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","2940745","Screening","3","Date of Visit","32035290","0","18 Mar 2026 11:04:18:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 11:04:18.413","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3009474","Week I-0 (1)","7","Date of Visit","32978123","0","16 Mar 2026 14:32:53:747","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 14:32:53.747","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3010324","Week I-2 (1)","8","Date of Visit","32990941","0","30 Mar 2026 16:30:14:523","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 16:30:14.523","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3041208","Week I-4 (1)","9","Date of Visit","33388764","0","04 May 2026 12:47:53:427","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#003 > 8APR2026 > FLARE UP OF ULCERATIVE COLITIS","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 12:47:53.427","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3060358","Induction Early Discontinuation (1)","12","Date of Visit","33636094","0","20 Apr 2026 11:09:46:360","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 11:09:46.360","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","3060359","Induction Safety Follow Up (1)","13","Date of Visit","33636095","0","04 May 2026 12:45:14:750","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 12:45:14.750","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2826843","Screening","3","Date of Visit","30518002","0","11 Dec 2025 12:11:27:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251211 12:11:27.283","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2862021","Week I-0 (1)","7","Date of Visit","30991502","0","07 Jan 2026 14:51:55:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260107 14:51:55.157","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2866536","Week I-2 (1)","8","Date of Visit","31047152","0","19 Jan 2026 12:54:52:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 12:54:52.147","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2885328","Week I-4 (1)","9","Date of Visit","31277129","0","19 Mar 2026 09:53:30:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 09:53:30.717","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2906753","Week I-8 (1)","10","Date of Visit","31546157","0","04 Mar 2026 14:50:25:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 14:50:25.120","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","2977238","Week I-12 (1)","11","Date of Visit","32532568","0","13 Apr 2026 13:03:42:417","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 13:03:42.417","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","190482","FR100062001","6330","3062242","Week M-4 (1)","15","Date of Visit","33659710","0","05 May 2026 07:03:53:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 07:03:53.107","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2872273","Screening","3","Date of Visit","31115805","0","28 Jan 2026 08:43:58:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 08:43:58.283","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2908498","Week I-0 (1)","7","Date of Visit","31571064","0","03 Feb 2026 10:07:44:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 10:07:44.227","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2910947","Week I-2 (1)","8","Date of Visit","31598058","0","04 Mar 2026 14:05:18:633","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 14:05:18.633","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2977124","Week I-4 (1)","9","Date of Visit","32531420","0","04 Mar 2026 14:08:01:723","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 14:08:01.723","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","2977129","Week I-8 (1)","10","Date of Visit","32531505","0","27 Mar 2026 09:20:45:360","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 09:20:45.360","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","192577","FR100062002","6330","3037803","Week I-12 (1)","11","Date of Visit","33346363","0","05 May 2026 07:54:52:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 07:54:52.787","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","2951220","Screening","3","Date of Visit","32174797","0","16 Mar 2026 13:06:55:903","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 13:06:55.903","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","3009516","Week I-0 (1)","7","Date of Visit","32978650","0","16 Mar 2026 13:34:42:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 13:34:42.147","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","3010140","Week I-2 (1)","8","Date of Visit","32988359","0","09 Apr 2026 13:59:15:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 13:59:15.780","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","3057835","Week I-4 (1)","9","Date of Visit","33606130","0","15 Apr 2026 07:37:47:367","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 07:37:47.367","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196317","FR100062003","6330","3066689","Week I-8 (1)","10","Date of Visit","33720195","0","11 May 2026 13:31:31:450","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 13:31:31.450","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196752","FR100062004","6330","2960181","Screening","3","Date of Visit","32318307","0","25 Mar 2026 08:41:00:207","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 08:41:00.207","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196752","FR100062004","6330","3025186","Week I-0 (1)","7","Date of Visit","33177421","0","25 Mar 2026 08:41:00:290","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 08:41:00.290","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196752","FR100062004","6330","3025622","Week I-2 (1)","8","Date of Visit","33182706","0","09 Apr 2026 14:12:42:800","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 14:12:42.800","","" +"FRA","9187","DD5-FR10006","CHRU de Lille Hopital Claude Huriez","196752","FR100062004","6330","3057868","Week I-4 (1)","9","Date of Visit","33606623","0","23 Apr 2026 13:08:02:390","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 13:08:02.390","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","191747","FR100072001","6330","2853910","Screening","3","Date of Visit","30889277","0","06 Feb 2026 14:06:27:260","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 14:06:27.260","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","196329","FR100072002","6330","2951495","Screening","3","Date of Visit","32179815","0","16 Mar 2026 15:38:11:867","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 15:38:11.867","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","199995","FR100072003","6330","3029333","Screening","3","Date of Visit","33230236","0","09 Apr 2026 13:17:42:677","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 13:17:42.677","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","199995","FR100072003","6330","3124766","Week I-0 (1)","7","Date of Visit","34513817","0","13 May 2026 13:52:51:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 13:52:51.657","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","199995","FR100072003","6330","3192058","Week I-2 (1)","8","Date of Visit","35027059","0","13 May 2026 14:01:31:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 14:01:31.517","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2867999","Screening","3","Date of Visit","31065900","0","19 Feb 2026 16:36:06:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 16:36:06.020","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2896419","Week I-0 (1)","7","Date of Visit","31419986","0","19 Feb 2026 16:39:16:610","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 16:39:16.610","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2896818","Week I-2 (1)","8","Date of Visit","31424810","0","19 Feb 2026 16:39:57:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 16:39:57.153","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2929679","Week I-4 (1)","9","Date of Visit","31860028","0","23 Feb 2026 12:36:58:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 12:36:58.277","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2951350","Week I-8 (1)","10","Date of Visit","32176322","0","28 Apr 2026 07:39:47:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 07:39:47.723","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","3113830","Week I-12 (1)","11","Date of Visit","34346431","0","29 Apr 2026 15:42:07:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 15:42:07.723","","" +"FRA","9043","DD5-FR10008","Hopital Saint-Antoine","192371","FR100082001","6330","2947325","Unscheduled 20260108","59","Date of Visit","32123501","0","19 Feb 2026 16:44:17:943","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","08 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA WAS COLLECTD BY MISTAKE ON 08-JAN-206 (CORRESPONDING TO SCREENING VISIT, AFTER SIGNING ICF)","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 16:44:17.943","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2815319","Screening","3","Date of Visit","30366779","0","09 Dec 2025 13:22:47:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251209 13:22:47.297","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2864120","Week I-0 (1)","7","Date of Visit","31018492","0","07 Jan 2026 09:16:08:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260107 09:16:08.533","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2865645","Week I-2 (1)","8","Date of Visit","31036555","0","20 Jan 2026 15:07:15:673","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 15:07:15.673","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2888563","Week I-4 (1)","9","Date of Visit","31315481","0","04 Feb 2026 13:15:37:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 13:15:37.320","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","2914850","Week I-8 (1)","10","Date of Visit","31649698","0","25 Mar 2026 11:58:32:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 11:58:32.957","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","3032450","Week I-12 (1)","11","Date of Visit","33273390","0","31 Mar 2026 11:59:47:543","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 11:59:47.543","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","189983","FR100092001","6330","3043057","Week M-4 (1)","15","Date of Visit","33409570","0","29 Apr 2026 13:20:40:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 13:20:40.677","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2831807","Screening","3","Date of Visit","30582295","0","24 Feb 2026 15:08:43:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 15:08:43.147","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2890100","Week I-0 (1)","7","Date of Visit","31333621","0","21 Jan 2026 14:06:03:637","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 14:06:03.637","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2891013","Week I-2 (1)","8","Date of Visit","31345103","0","02 Feb 2026 14:38:27:663","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 14:38:27.663","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2909260","Week I-4 (1)","9","Date of Visit","31580368","0","24 Feb 2026 14:11:20:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 14:11:20.767","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","2955343","Week I-8 (1)","10","Date of Visit","32245065","0","25 Mar 2026 12:06:15:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 12:06:15.920","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","3032469","Week I-12 (1)","11","Date of Visit","33273566","0","14 Apr 2026 07:54:25:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 07:54:25.247","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","190700","FR100092002","6330","3063997","Week M-4 (1)","15","Date of Visit","33685119","0","11 May 2026 11:13:15:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 11:13:15.530","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2842554","Screening","3","Date of Visit","30716965","0","19 Dec 2025 13:45:51:933","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251219 13:45:51.933","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2898560","Week I-0 (1)","7","Date of Visit","31445480","0","29 Jan 2026 09:21:02:283","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 09:21:02.283","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2902374","Week I-2 (1)","8","Date of Visit","31492240","0","10 Feb 2026 15:08:52:267","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 15:08:52.267","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2926843","Week I-4 (1)","9","Date of Visit","31821171","0","24 Feb 2026 14:25:21:027","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 14:25:21.027","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","2955367","Week I-8 (1)","10","Date of Visit","32246138","0","25 Mar 2026 12:11:42:973","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 12:11:42.973","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","3032479","Week I-12 (1)","11","Date of Visit","33273740","0","18 May 2026 13:01:42:493","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 13:01:42.493","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","191248","FR100092003","6330","3199320","Week M-4 (1)","15","Date of Visit","35132884","0","19 May 2026 12:25:45:897","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 12:25:45.897","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2863938","Screening","3","Date of Visit","31015862","0","07 Jan 2026 09:36:33:650","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260107 09:36:33.650","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2910638","Week I-0 (1)","7","Date of Visit","31595074","0","03 Feb 2026 13:32:34:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 13:32:34.897","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2912476","Week I-2 (1)","8","Date of Visit","31623852","0","24 Feb 2026 14:37:52:137","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 14:37:52.137","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2955385","Week I-4 (1)","9","Date of Visit","32246342","0","04 Mar 2026 12:56:04:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 12:56:04.127","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","2976976","Week I-8 (1)","10","Date of Visit","32529669","0","31 Mar 2026 13:26:33:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 13:26:33.763","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192183","FR100092004","6330","3043253","Week I-12 (1)","11","Date of Visit","33412060","0","29 Apr 2026 11:11:13:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 11:11:13.350","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2872200","Screening","3","Date of Visit","31115033","0","13 Jan 2026 14:26:22:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260113 14:26:22.790","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2925816","Week I-0 (1)","7","Date of Visit","31804628","0","11 Feb 2026 13:31:16:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 13:31:16.530","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2929589","Week I-2 (1)","8","Date of Visit","31858663","0","24 Feb 2026 14:47:17:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 14:47:17.323","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2955428","Week I-4 (1)","9","Date of Visit","32246835","0","11 Mar 2026 08:16:21:783","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 08:16:21.783","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","2999670","Week I-8 (1)","10","Date of Visit","32845600","0","16 Apr 2026 13:12:54:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 13:12:54.547","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","192572","FR100092005","6330","3070603","Week I-12 (1)","11","Date of Visit","33785966","0","05 May 2026 12:46:20:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 12:46:20.183","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","2900142","Screening","3","Date of Visit","31466873","0","19 May 2026 13:45:37:790","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 13:45:37.790","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","3013473","Week I-0 (1)","7","Date of Visit","33031085","0","31 Mar 2026 08:21:49:110","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 08:21:49.110","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","3042186","Week I-2 (1)","8","Date of Visit","33400674","0","31 Mar 2026 13:51:42:620","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 13:51:42.620","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","3043303","Week I-4 (1)","9","Date of Visit","33412913","0","16 Apr 2026 12:58:56:400","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 12:58:56.400","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","193874","FR100092006","6330","3070527","Week I-8 (1)","10","Date of Visit","33785029","0","19 May 2026 13:55:47:143","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 13:55:47.143","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","194365","FR100092007","6330","2910970","Screening","3","Date of Visit","31598302","0","12 Feb 2026 14:30:15:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 14:30:15.043","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","194365","FR100092007","6330","2970423","Week I-0 (1)","7","Date of Visit","32438390","0","04 Mar 2026 14:09:38:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 14:09:38.853","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","194365","FR100092007","6330","2977134","Week I-2 (1)","8","Date of Visit","32531548","0","31 Mar 2026 14:00:07:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 14:00:07.623","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","194365","FR100092007","6330","3043318","Week I-4 (1)","9","Date of Visit","33413094","0","31 Mar 2026 14:05:19:527","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 14:05:19.527","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","2931559","Screening","3","Date of Visit","31891199","0","12 Feb 2026 14:16:27:507","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 14:16:27.507","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","2965406","Week I-0 (1)","7","Date of Visit","32375137","0","16 Apr 2026 12:53:19:683","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 12:53:19.683","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","2974556","Week I-2 (1)","8","Date of Visit","32499174","0","01 Apr 2026 08:44:37:293","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 08:44:37.293","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","3044650","Week I-4 (1)","9","Date of Visit","33436978","0","01 Apr 2026 08:53:11:930","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 08:53:11.930","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195324","FR100092008","6330","3044679","Week I-8 (1)","10","Date of Visit","33437258","0","29 Apr 2026 09:00:08:813","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 09:00:08.813","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195772","FR100092009","6330","2939422","Screening","3","Date of Visit","32016254","0","25 Feb 2026 14:04:24:567","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 14:04:24.567","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195772","FR100092009","6330","2989895","Week I-0 (1)","7","Date of Visit","32709664","0","09 Mar 2026 15:25:49:797","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 15:25:49.797","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195772","FR100092009","6330","2994954","Week I-2 (1)","8","Date of Visit","32783387","0","01 Apr 2026 11:37:05:600","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 11:37:05.600","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","195772","FR100092009","6330","3045058","Week I-4 (1)","9","Date of Visit","33441988","0","16 Apr 2026 12:47:39:660","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 12:47:39.660","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","196321","FR100092010","6330","2951343","Screening","3","Date of Visit","32176168","0","01 Apr 2026 12:20:19:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 12:20:19.150","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","196321","FR100092010","6330","3029206","Week I-0 (1)","7","Date of Visit","33228575","0","16 Apr 2026 12:24:24:487","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 12:24:24.487","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","196321","FR100092010","6330","3070429","Week I-2 (1)","8","Date of Visit","33783831","0","16 Apr 2026 12:30:26:510","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 12:30:26.510","","" +"FRA","9242","DD5-FR10009","CHU de Bordeaux - Hospital Haut-Leveque","196321","FR100092010","6330","3070445","Week I-4 (1)","9","Date of Visit","33783990","0","22 Apr 2026 08:05:15:813","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 08:05:15.813","","" +"FRA","9121","DD5-FR10010","CHU de Clermont Ferrand - Site Estaing","193256","FR100102001","6330","2886978","Screening","3","Date of Visit","31295934","0","04 Mar 2026 14:18:51:277","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 14:18:51.277","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2837791","Screening","3","Date of Visit","30661325","0","17 Dec 2025 09:21:50:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251217 09:21:50.173","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2890016","Week I-0 (1)","7","Date of Visit","31332558","0","21 Jan 2026 14:09:56:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 14:09:56.507","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2891021","Week I-2 (1)","8","Date of Visit","31345186","0","04 Feb 2026 09:00:48:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 09:00:48.680","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2913954","Week I-4 (1)","9","Date of Visit","31640742","0","18 Feb 2026 07:59:54:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260218 07:59:54.027","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","2943553","Week I-8 (1)","10","Date of Visit","32071387","0","18 Mar 2026 08:38:19:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 08:38:19.207","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","3015743","Week I-12 (1)","11","Date of Visit","33060530","0","15 Apr 2026 11:25:53:020","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 11:25:53.020","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191036","FR100112001","6330","3067315","Week M-4 (1)","15","Date of Visit","33732442","0","13 May 2026 08:45:23:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 08:45:23.020","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2842276","Screening","3","Date of Visit","30713998","0","18 Dec 2025 15:31:17:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251218 15:31:17.547","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2887385","Week I-0 (1)","7","Date of Visit","31301216","0","20 Jan 2026 11:17:04:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 11:17:04.930","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2887740","Week I-2 (1)","8","Date of Visit","31305076","0","03 Feb 2026 10:30:30:947","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 10:30:30.947","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2910990","Week I-4 (1)","9","Date of Visit","31598797","0","17 Feb 2026 09:23:26:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 09:23:26.107","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","2940698","Week I-8 (1)","10","Date of Visit","32034732","0","17 Mar 2026 12:24:38:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 12:24:38.567","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","3013617","Week I-12 (1)","11","Date of Visit","33033276","0","14 Apr 2026 14:07:45:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 14:07:45.163","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","191235","FR100112002","6330","3065511","Week M-4 (1)","15","Date of Visit","33704188","0","12 May 2026 10:50:31:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 10:50:31.537","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","192383","FR100112003","6330","2868303","Screening","3","Date of Visit","31069600","0","03 Feb 2026 08:25:28:040","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 08:25:28.040","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196070","FR100112004","6330","2946049","Screening","3","Date of Visit","32104288","0","19 Feb 2026 13:40:00:030","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 13:40:00.030","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196070","FR100112004","6330","3048135","Week I-0 (1)","7","Date of Visit","33486486","0","07 Apr 2026 13:00:24:663","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 13:00:24.663","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196070","FR100112004","6330","3051906","Week I-2 (1)","8","Date of Visit","33530606","0","15 Apr 2026 11:09:28:410","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 11:09:28.410","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196070","FR100112004","6330","3067263","Week I-4 (1)","9","Date of Visit","33731206","0","30 Apr 2026 08:26:27:780","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 08:26:27.780","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196433","FR100112005","6330","2953589","Screening","3","Date of Visit","32213768","0","27 Feb 2026 10:13:30:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 10:13:30.297","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196433","FR100112005","6330","3044497","Week I-0 (1)","7","Date of Visit","33434424","0","01 Apr 2026 08:45:10:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 08:45:10.113","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196433","FR100112005","6330","3044651","Week I-2 (1)","8","Date of Visit","33437004","0","15 Apr 2026 10:20:34:957","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 10:20:34.957","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","196433","FR100112005","6330","3067112","Week I-4 (1)","9","Date of Visit","33727378","0","29 Apr 2026 10:54:49:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 10:54:49.597","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","2919837","Screening","3","Date of Visit","31723780","0","06 May 2026 12:03:05:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 12:03:05.837","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","3024906","Week I-0 (1)","7","Date of Visit","33173353","0","10 Apr 2026 12:16:43:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 12:16:43.607","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","3026234","Week I-2 (1)","8","Date of Visit","33191248","0","10 Apr 2026 10:08:17:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 10:08:17.783","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","3059608","Week I-4 (1)","9","Date of Visit","33627792","0","04 May 2026 07:08:27:603","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 07:08:27.603","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","194782","FR100122001","6330","3126392","Week I-8 (1)","10","Date of Visit","34537118","0","18 May 2026 10:20:33:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 10:20:33.367","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","200320","FR100122002","6330","3035852","Screening","3","Date of Visit","33317702","0","11 May 2026 09:41:22:410","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 09:41:22.410","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","211035","FR100122003","6330","3198030","Screening","3","Date of Visit","35114620","0","22 May 2026 07:56:16:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:56:16.897","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2846488","Screening","3","Date of Visit","30772714","0","09 Jan 2026 07:41:38:643","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 07:41:38.643","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2896313","Week I-0 (1)","7","Date of Visit","31418320","0","26 Jan 2026 11:34:10:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260126 11:34:10.037","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2896488","Week I-2 (1)","8","Date of Visit","31420847","0","09 Feb 2026 10:37:14:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 10:37:14.397","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2922528","Week I-4 (1)","9","Date of Visit","31758882","0","25 Feb 2026 09:44:39:703","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 09:44:39.703","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2957085","Week I-8 (1)","10","Date of Visit","32271577","0","23 Mar 2026 10:04:46:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 10:04:46.160","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","3025320","Week I-12 (1)","11","Date of Visit","33179369","0","14 Apr 2026 08:52:51:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 08:52:51.897","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","3064326","Week M-4 (1)","15","Date of Visit","33688757","0","18 May 2026 09:12:54:853","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","LACK OF RESPONSE TO TREATMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 09:12:54.853","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","3185375","Maintenance Early Discontinuation (1)","27","Date of Visit","34928693","0","18 May 2026 09:13:06:407","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 09:13:06.407","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","3198270","Unscheduled 20260414","59","Date of Visit","35117712","0","18 May 2026 09:04:44:330","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","14 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTED AT WEEK I-12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 09:04:44.330","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2858750","Screening","3","Date of Visit","30950401","0","08 Jan 2026 14:17:17:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260108 14:17:17.813","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2898324","Week I-0 (1)","7","Date of Visit","31443339","0","27 Jan 2026 12:49:30:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260127 12:49:30.927","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2898762","Week I-2 (1)","8","Date of Visit","31448206","0","10 Feb 2026 11:30:55:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 11:30:55.247","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2926141","Week I-4 (1)","9","Date of Visit","31809883","0","25 Feb 2026 10:28:09:723","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 10:28:09.723","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","2957191","Week I-8 (1)","10","Date of Visit","32274962","0","24 Mar 2026 09:38:53:920","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 09:38:53.920","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","3028018","Week I-12 (1)","11","Date of Visit","33214464","0","27 Apr 2026 10:30:55:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 10:30:55.667","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","3111697","Week M-4 (1)","15","Date of Visit","34316755","0","18 May 2026 09:18:04:797","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 09:18:04.797","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191940","FR100132002","6330","3198524","Unscheduled 20260427","59","Date of Visit","35121590","0","18 May 2026 09:17:37:947","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTED AT WEEK I-12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 09:17:37.947","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","2956711","Screening","3","Date of Visit","32266368","0","24 Mar 2026 13:30:24:167","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 13:30:24.167","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","3027828","Week I-0 (1)","7","Date of Visit","33212584","0","24 Mar 2026 14:20:38:067","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 14:20:38.067","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","3029860","Week I-2 (1)","8","Date of Visit","33236712","0","07 Apr 2026 11:49:07:207","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 11:49:07.207","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","3051667","Week I-4 (1)","9","Date of Visit","33527772","0","20 Apr 2026 08:05:40:167","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 08:05:40.167","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","196583","FR100132003","6330","3199351","Unscheduled 20260407","59","Date of Visit","35133219","0","18 May 2026 13:23:17:807","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","07 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTED AT WEEK I-2","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 13:23:17.807","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","2919949","Screening","3","Date of Visit","31724629","0","06 Mar 2026 10:27:13:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 10:27:13.287","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","3003877","Week I-0 (1)","7","Date of Visit","32901314","0","13 Mar 2026 16:07:35:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 16:07:35.710","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","3007472","Week I-2 (1)","8","Date of Visit","32952078","0","26 Mar 2026 11:07:02:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 11:07:02.077","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","3035391","Week I-4 (1)","9","Date of Visit","33311431","0","22 Apr 2026 12:51:30:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 12:51:30.780","","" +"FRA","9243","DD5-FR10014","GHI Le Raincy Montfermeil","194788","FR100142001","6330","3056831","Week I-8 (1)","10","Date of Visit","33595244","0","12 May 2026 07:28:05:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 07:28:05.563","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","196881","FR100152001","6330","2962932","Screening","3","Date of Visit","32351217","0","13 Apr 2026 09:18:09:963","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 09:18:09.963","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","196881","FR100152001","6330","3025775","Week I-0 (1)","7","Date of Visit","33186064","0","27 Mar 2026 11:24:18:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 11:24:18.703","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","196881","FR100152001","6330","3038069","Week I-2 (1)","8","Date of Visit","33349876","0","10 Apr 2026 12:43:26:723","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 12:43:26.723","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","196881","FR100152001","6330","3059998","Week I-4 (1)","9","Date of Visit","33632131","0","23 Apr 2026 14:43:42:477","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 14:43:42.477","","" +"FRA","9044","DD5-FR10015","Centre Hospitalier de la Cote Basque","204918","FR100152002","6330","3134103","Screening","3","Date of Visit","34670757","0","06 May 2026 10:37:52:917","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 10:37:52.917","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2829985","Screening","3","Date of Visit","30557668","0","17 Feb 2026 15:44:28:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 15:44:28.077","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2879477","Week I-0 (1)","7","Date of Visit","31206301","0","15 Jan 2026 11:47:42:140","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260115 11:47:42.140","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2879646","Week I-2 (1)","8","Date of Visit","31208583","0","29 Jan 2026 09:43:37:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 09:43:37.693","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2902464","Week I-4 (1)","9","Date of Visit","31492997","0","12 Feb 2026 13:22:19:903","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 13:22:19.903","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","2932847","Week I-8 (1)","10","Date of Visit","31911079","0","12 Mar 2026 13:07:44:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 13:07:44.460","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","3004302","Week I-12 (1)","11","Date of Visit","32909207","0","12 May 2026 14:03:15:413","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 14:03:15.413","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","190605","FR100162001","6330","3070540","Week M-4 (1)","15","Date of Visit","33785197","0","12 May 2026 13:46:26:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 13:46:26.180","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2868729","Screening","3","Date of Visit","31074657","0","11 Feb 2026 15:20:12:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 15:20:12.660","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2892523","Week I-0 (1)","7","Date of Visit","31365549","0","22 Jan 2026 13:49:49:690","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 13:49:49.690","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2893111","Week I-2 (1)","8","Date of Visit","31373727","0","05 Feb 2026 15:07:45:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 15:07:45.960","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2918264","Week I-4 (1)","9","Date of Visit","31700792","0","20 Feb 2026 12:58:27:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260220 12:58:27.657","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","2949212","Week I-8 (1)","10","Date of Visit","32147077","0","19 Mar 2026 11:13:17:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 11:13:17.033","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","3019211","Week I-12 (1)","11","Date of Visit","33105126","0","23 Apr 2026 12:44:18:423","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 12:44:18.423","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","3088973","Week M-4 (1)","15","Date of Visit","34072468","0","21 May 2026 12:18:09:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 12:18:09.830","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192409","FR100162002","6330","3115585","Unscheduled 20260423","59","Date of Visit","34377017","0","28 Apr 2026 13:46:55:077","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","23 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLES DONE ON THE DAY OF WEEK I-12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 13:46:55.077","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2880418","Screening","3","Date of Visit","31218811","0","12 Mar 2026 15:49:05:520","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 15:49:05.520","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2922489","Week I-0 (1)","7","Date of Visit","31758174","0","09 Feb 2026 13:17:27:633","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 13:17:27.633","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2923146","Week I-2 (1)","8","Date of Visit","31766712","0","23 Feb 2026 10:57:28:250","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 10:57:28.250","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2951152","Week I-4 (1)","9","Date of Visit","32173403","0","09 Mar 2026 13:15:57:060","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 13:15:57.060","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2994570","Week I-8 (1)","10","Date of Visit","32777073","0","12 May 2026 08:24:12:587","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 08:24:12.587","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3044783","Week I-12 (1)","11","Date of Visit","33439115","0","22 Apr 2026 10:37:55:967","Tier 5","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#011 > 10APR2026 > SEVERE FLARE-UP OF ULCERATIVE COLITIS","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 10:37:55.967","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3084009","Induction Safety Follow Up (1)","13","Date of Visit","33989083","0","20 May 2026 13:24:19:947","Tier 5","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 13:24:19.947","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3065458","Clinical Flare 20260410","25","Date of Visit","33703172","0","14 Apr 2026 13:40:30:537","Tier 5","SDVTier","Yes","Did this visit occur?","","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 13:40:30.537","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3044786","Unscheduled 20260401","59","Date of Visit","33439158","0","02 Apr 2026 12:30:33:677","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","1 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WEEK I-8 VISIT MADE ON SITE AT THE PATIENT'S REQUEST DUE TO WORSENING OF HIS SYMPTOMS. IN ADDITION TO THIS, BLOOD SAMPLES ARE TAKEN UNSCHEDULED.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 12:30:33.677","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","3032164","Unscheduled 20260430","59","Date of Visit","34508286","0","30 Apr 2026 10:15:30:110","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","30 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLES NOT DONE BEFORE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 10:15:30.110","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","196428","GB100012001","6330","2953504","Screening","3","Date of Visit","32212778","0","21 Apr 2026 16:10:39:283","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 16:10:39.283","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","201776","GB100012002","6330","3064353","Screening","3","Date of Visit","33689184","0","21 Apr 2026 15:06:09:300","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 15:06:09.300","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","201776","GB100012002","6330","3114518","Week I-0 (1)","7","Date of Visit","34359003","0","28 Apr 2026 11:07:57:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:07:57.100","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","201776","GB100012002","6330","3114798","Week I-2 (1)","8","Date of Visit","34363928","0","12 May 2026 13:29:51:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 13:29:51.090","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","205033","GB100012003","6330","3136480","Screening","3","Date of Visit","34717450","0","08 May 2026 09:50:06:327","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 09:50:06.327","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","210395","GB100012004","6330","3184979","Screening","3","Date of Visit","34924485","0","11 May 2026 16:09:52:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 16:09:52.417","","" +"GBR","8955","DD5-GB10002","Fairfield General Hospital","192792","GB100022001","6330","2877317","Screening","3","Date of Visit","31179852","0","10 Mar 2026 13:52:10:603","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 13:52:10.603","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","198792","GB100052001","6330","3004070","Screening","3","Date of Visit","32904861","0","14 Apr 2026 13:44:19:877","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 13:44:19.877","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","200715","GB100052002","6330","3042693","Screening","3","Date of Visit","33405101","0","31 Mar 2026 12:18:15:740","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 12:18:15.740","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","200715","GB100052002","6330","3114661","Week I-0 (1)","7","Date of Visit","34360809","0","01 May 2026 12:24:28:117","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 12:24:28.117","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","200715","GB100052002","6330","3125572","Week I-2 (1)","8","Date of Visit","34526178","0","13 May 2026 14:25:33:403","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 14:25:33.403","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","201658","GB100052003","6330","3061771","Screening","3","Date of Visit","33654087","0","18 Apr 2026 11:54:56:183","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260418 11:54:56.183","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","201658","GB100052003","6330","3198846","Week I-0 (1)","7","Date of Visit","35126949","0","18 May 2026 14:22:06:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 14:22:06.570","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","202727","GB100052004","6330","3084025","Screening","3","Date of Visit","33989341","0","22 Apr 2026 14:50:45:070","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 14:50:45.070","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2866472","Screening","3","Date of Visit","31046531","0","09 Jan 2026 10:32:42:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 10:32:42.387","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2916419","Week I-0 (1)","7","Date of Visit","31670917","0","05 Feb 2026 12:30:48:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 12:30:48.780","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2917633","Week I-2 (1)","8","Date of Visit","31693268","0","19 Feb 2026 10:34:02:097","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 10:34:02.097","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2946357","Week I-4 (1)","9","Date of Visit","32107964","0","04 Mar 2026 10:42:08:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 10:42:08.940","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","2976481","Week I-8 (1)","10","Date of Visit","32523950","0","30 Mar 2026 15:48:05:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 15:48:05.607","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","192307","GB100082001","6330","3041143","Week I-12 (1)","11","Date of Visit","33387563","0","30 Apr 2026 11:42:16:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 11:42:16.773","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","198475","GB100082002","6330","2997711","Screening","3","Date of Visit","32819836","0","14 Apr 2026 12:32:31:593","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 12:32:31.593","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","199228","GB100082003","6330","3013626","Screening","3","Date of Visit","33033326","0","07 May 2026 09:52:29:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 09:52:29.130","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","199228","GB100082003","6330","3087325","Week I-0 (1)","7","Date of Visit","34042564","0","23 Apr 2026 11:16:22:900","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 11:16:22.900","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","199228","GB100082003","6330","3088685","Week I-2 (1)","8","Date of Visit","34066477","0","07 May 2026 09:44:08:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 09:44:08.483","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","199228","GB100082003","6330","3136730","Week I-4 (1)","9","Date of Visit","34722230","0","21 May 2026 12:56:06:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 12:56:06.130","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","192804","GB100132001","6330","2877534","Screening","3","Date of Visit","31182132","0","09 Apr 2026 13:48:27:560","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 13:48:27.560","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","198811","GB100132002","6330","3004659","Screening","3","Date of Visit","32914319","0","17 Mar 2026 12:01:03:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 12:01:03.613","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","198811","GB100132002","6330","3079874","Week I-0 (1)","7","Date of Visit","33930026","0","21 Apr 2026 15:16:36:717","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 15:16:36.717","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","198811","GB100132002","6330","3081613","Week I-2 (1)","8","Date of Visit","33957556","0","06 May 2026 10:44:32:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 10:44:32.000","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","198811","GB100132002","6330","3134113","Week I-4 (1)","9","Date of Visit","34671033","0","19 May 2026 14:57:11:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 14:57:11.437","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","2963308","Screening","3","Date of Visit","32355755","0","05 Mar 2026 10:58:16:490","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 10:58:16.490","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","3019299","Week I-0 (1)","7","Date of Visit","33106048","0","19 Mar 2026 14:51:50:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 14:51:50.200","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","3019978","Week I-2 (1)","8","Date of Visit","33113591","0","06 Apr 2026 13:04:50:107","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 13:04:50.107","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","3049845","Week I-4 (1)","9","Date of Visit","33505925","0","15 Apr 2026 17:09:01:790","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 17:09:01.790","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","196900","GR100012001","6330","3068257","Week I-8 (1)","10","Date of Visit","33748208","0","22 May 2026 12:17:49:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:17:49.823","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","201143","GR100012002","6330","3051293","Screening","3","Date of Visit","33523313","0","22 May 2026 11:26:00:877","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 11:26:00.877","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191034","GR100032001","6330","2837754","Screening","3","Date of Visit","30660736","0","02 Feb 2026 17:08:53:180","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 17:08:53.180","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2841955","Screening","3","Date of Visit","30710327","0","27 Feb 2026 13:14:26:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 13:14:26.280","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2898367","Week I-0 (1)","7","Date of Visit","31444019","0","27 Jan 2026 17:52:55:470","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260127 17:52:55.470","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2899232","Week I-2 (1)","8","Date of Visit","31454528","0","20 Mar 2026 12:45:47:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 12:45:47.553","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2930421","Week I-4 (1)","9","Date of Visit","31871852","0","27 Feb 2026 18:39:39:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 18:39:39.787","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","2964146","Week I-8 (1)","10","Date of Visit","32362957","0","07 Apr 2026 17:01:33:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 17:01:33.050","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","3052323","Week I-12 (1)","11","Date of Visit","33536432","0","22 Apr 2026 17:35:58:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 17:35:58.247","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191218","GR100032002","6330","3086037","Week M-4 (1)","15","Date of Visit","34023580","0","22 May 2026 08:36:41:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 08:36:41.147","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","2897936","Screening","3","Date of Visit","31438211","0","27 Jan 2026 17:36:00:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260127 17:36:00.580","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","2981491","Week I-0 (1)","7","Date of Visit","32587175","0","06 Mar 2026 20:01:29:733","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 20:01:29.733","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","2988548","Week I-2 (1)","8","Date of Visit","32693517","0","20 Mar 2026 11:29:52:357","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 11:29:52.357","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","3022189","Week I-4 (1)","9","Date of Visit","33137678","0","03 Apr 2026 14:42:09:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 14:42:09.600","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","3048604","Week I-8 (1)","10","Date of Visit","33491202","0","04 May 2026 11:20:14:457","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 11:20:14.457","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","204274","GR100032004","6330","3120169","Screening","3","Date of Visit","34463089","0","30 Apr 2026 11:42:14:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 11:42:14.977","","" +"GRC","9594","DD5-GR10004","Theageneio Cancer Hospital","210590","GR100042001","6330","3188701","Screening","3","Date of Visit","34979204","0","18 May 2026 11:24:55:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 11:24:55.843","","" +"GRC","9594","DD5-GR10004","Theageneio Cancer Hospital","211197","GR100042002","6330","3201145","Screening","3","Date of Visit","35160678","0","19 May 2026 11:30:00:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 11:30:00.303","","" +"GRC","9610","DD5-GR10005","Geniko Nosokomeio Nikaias Peiraia Ag. Panteleimon","201366","GR100052001","6330","3055976","Screening","3","Date of Visit","33582638","0","09 Apr 2026 13:40:37:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 13:40:37.730","","" +"GRC","9610","DD5-GR10005","Geniko Nosokomeio Nikaias Peiraia Ag. Panteleimon","201366","GR100052001","6330","3198046","Week I-0 (1)","7","Date of Visit","35114801","0","18 May 2026 08:16:58:923","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 08:16:58.923","","" +"GRC","9620","DD5-GR10006","HIPPOKRATION HOSPITAL","211164","GR100062001","6330","3200439","Screening","3","Date of Visit","35148715","0","19 May 2026 07:26:04:730","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 07:26:04.730","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","199211","GR100072001","6330","3013293","Screening","3","Date of Visit","33029259","0","17 Mar 2026 13:50:58:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 13:50:58.737","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","199211","GR100072001","6330","3056587","Week I-0 (1)","7","Date of Visit","33592029","0","09 Apr 2026 11:59:39:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 11:59:39.433","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","199211","GR100072001","6330","3057389","Week I-2 (1)","8","Date of Visit","33601318","0","23 Apr 2026 12:49:24:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 12:49:24.093","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","199211","GR100072001","6330","3088988","Week I-4 (1)","9","Date of Visit","34072587","0","08 May 2026 09:22:34:190","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 09:22:34.190","","" +"GRC","9587","DD5-GR10007","Alexandra General Hospital of Athens","210689","GR100072002","6330","3190793","Screening","3","Date of Visit","35007366","0","13 May 2026 08:06:46:073","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 08:06:46.073","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","2892982","Screening","3","Date of Visit","31372233","0","23 Jan 2026 10:21:06:023","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 10:21:06.023","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","2978459","Week I-0 (1)","7","Date of Visit","32547780","0","10 Mar 2026 18:30:40:807","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 18:30:40.807","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","2998639","Week I-2 (1)","8","Date of Visit","32833655","0","17 Mar 2026 17:26:39:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 17:26:39.857","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","3014515","Week I-4 (1)","9","Date of Visit","33045778","0","06 Apr 2026 16:12:39:107","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 16:12:39.107","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","3050158","Week I-8 (1)","10","Date of Visit","33508997","0","03 May 2026 04:12:28:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260503 04:12:28.830","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","193542","HU100012001","6330","3194940","Unscheduled 20260428","59","Date of Visit","35068145","0","14 May 2026 15:43:45:300","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","28 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 15:43:45.300","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","195767","HU100012002","6330","2939290","Screening","3","Date of Visit","32013974","0","23 Mar 2026 13:59:40:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 13:59:40.680","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","195767","HU100012002","6330","3039588","Week I-0 (1)","7","Date of Visit","33368784","0","30 Mar 2026 15:37:57:637","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 15:37:57.637","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","195767","HU100012002","6330","3041123","Week I-2 (1)","8","Date of Visit","33387358","0","14 Apr 2026 14:25:45:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 14:25:45.570","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","195767","HU100012002","6330","3065546","Week I-4 (1)","9","Date of Visit","33704663","0","03 May 2026 04:13:33:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260503 04:13:33.027","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","196579","HU100012003","6330","2956652","Screening","3","Date of Visit","32265626","0","14 Apr 2026 16:14:18:947","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 16:14:18.947","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","2999241","Screening","3","Date of Visit","32840864","0","23 Mar 2026 16:10:59:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 16:10:59.037","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","3039531","Week I-0 (1)","7","Date of Visit","33368044","0","30 Mar 2026 16:18:50:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 16:18:50.033","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","3041200","Week I-2 (1)","8","Date of Visit","33388537","0","14 Apr 2026 14:29:57:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 14:29:57.827","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","3065555","Week I-4 (1)","9","Date of Visit","33704754","0","03 May 2026 04:17:55:040","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260503 04:17:55.040","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","198544","HU100012004","6330","3194950","Unscheduled 20260427","59","Date of Visit","35068273","0","14 May 2026 15:54:43:057","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 15:54:43.057","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","199323","HU100012005","6330","3015608","Screening","3","Date of Visit","33058247","0","23 Mar 2026 16:53:54:310","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 16:53:54.310","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","199323","HU100012005","6330","3050850","Week I-0 (1)","7","Date of Visit","33516761","0","12 Apr 2026 15:12:34:170","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260412 15:12:34.170","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","199323","HU100012005","6330","3060860","Week I-2 (1)","8","Date of Visit","33642087","0","23 Apr 2026 11:19:04:207","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 11:19:04.207","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","199323","HU100012005","6330","3088697","Week I-4 (1)","9","Date of Visit","34066578","0","07 May 2026 06:39:45:853","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 06:39:45.853","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","201991","HU100012006","6330","3069274","Screening","3","Date of Visit","33764107","0","14 May 2026 16:09:32:787","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 16:09:32.787","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","201991","HU100012006","6330","3189927","Week I-0 (1)","7","Date of Visit","34997755","0","14 May 2026 16:09:32:873","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 16:09:32.873","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","211180","HU100012007","6330","3200738","Screening","3","Date of Visit","35153328","0","19 May 2026 09:00:41:533","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 09:00:41.533","","" +"HUN","9179","DD5-HU10002","Semmelweis Egyetem","204128","HU100022001","6330","3116714","Screening","3","Date of Visit","34395009","0","29 Apr 2026 09:07:40:117","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 09:07:40.117","","" +"HUN","9179","DD5-HU10002","Semmelweis Egyetem","204146","HU100022002","6330","3117102","Screening","3","Date of Visit","34401134","0","30 Apr 2026 08:37:06:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 08:37:06.940","","" +"HUN","9096","DD5-HU10003","Pannónia Magánorvosi Centrum Kft","197620","HU100032001","6330","2978344","Screening","3","Date of Visit","32546504","0","30 Apr 2026 11:39:05:540","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 11:39:05.540","","" +"HUN","9096","DD5-HU10003","Pannónia Magánorvosi Centrum Kft","200294","HU100032002","6330","3035367","Screening","3","Date of Visit","33310947","0","30 Apr 2026 11:40:52:003","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 MAR 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 11:40:52.003","","" +"HUN","9210","DD5-HU10004","Clinfan Ltd. SMO","197630","HU100042001","6330","2978593","Screening","3","Date of Visit","32549472","0","05 Mar 2026 12:13:19:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 12:13:19.133","","" +"HUN","9210","DD5-HU10004","Clinfan Ltd. SMO","197630","HU100042001","6330","3042045","Week I-0 (1)","7","Date of Visit","33398760","0","31 Mar 2026 13:13:27:923","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 13:13:27.923","","" +"HUN","9210","DD5-HU10004","Clinfan Ltd. SMO","197630","HU100042001","6330","3043214","Week I-2 (1)","8","Date of Visit","33411576","0","15 Apr 2026 08:45:00:510","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 08:45:00.510","","" +"HUN","9210","DD5-HU10004","Clinfan Ltd. SMO","197630","HU100042001","6330","3066891","Week I-4 (1)","9","Date of Visit","33723756","0","28 Apr 2026 06:50:46:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 06:50:46.783","","" +"HUN","9097","DD5-HU10005","Obudai Egeszsegugyi Centrum Kft","201768","HU100052001","6330","3064181","Screening","3","Date of Visit","33686754","0","21 Apr 2026 10:30:14:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 10:30:14.037","","" +"HUN","9237","DD5-HU10008","Debreceni Egyetem Klinikai Kozpont","200313","HU100082001","6330","3035691","Screening","3","Date of Visit","33314716","0","26 Mar 2026 11:42:53:490","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 MAR 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 11:42:53.490","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","197622","HU100092001","6330","2978382","Screening","3","Date of Visit","32546958","0","28 Apr 2026 12:24:49:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 12:24:49.230","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","197622","HU100092001","6330","3050796","Week I-0 (1)","7","Date of Visit","33516324","0","20 Apr 2026 12:01:43:430","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 12:01:43.430","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","197622","HU100092001","6330","3077863","Week I-2 (1)","8","Date of Visit","33900626","0","21 Apr 2026 06:17:23:527","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 06:17:23.527","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","197622","HU100092001","6330","3079204","Week I-4 (1)","9","Date of Visit","33919723","0","05 May 2026 05:34:22:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 05:34:22.437","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","200094","HU100092002","6330","3031377","Screening","3","Date of Visit","33258364","0","20 Apr 2026 13:18:19:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 13:18:19.983","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","200094","HU100092002","6330","3113726","Week I-0 (1)","7","Date of Visit","34343949","0","28 Apr 2026 09:33:18:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 09:33:18.507","","" +"HUN","9213","DD5-HU10009","Szent Borbala Hospital Tatabanya","200094","HU100092002","6330","3114471","Week I-2 (1)","8","Date of Visit","34358453","0","12 May 2026 11:47:11:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 11:47:11.810","","" +"HUN","9858","DD5-HU10011","Vasutegeszsegugyi Nonprofit Kozhasznu Kft","194650","HU100112001","6330","2916966","Screening","3","Date of Visit","31680149","0","06 Apr 2026 13:01:24:030","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 13:01:24.030","","" +"HUN","9858","DD5-HU10011","Vasutegeszsegugyi Nonprofit Kozhasznu Kft","195168","HU100112002","6330","2928479","Screening","3","Date of Visit","31844418","0","06 Apr 2026 13:08:06:827","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 13:08:06.827","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","184344","IL100032001","6330","2683308","Screening","3","Date of Visit","28849850","0","04 Jan 2026 10:57:04:620","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260104 10:57:04.620","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2751913","Screening","3","Date of Visit","29463959","0","04 Jan 2026 17:59:02:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260104 17:59:02.350","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2847318","Week I-0 (1)","7","Date of Visit","30782657","0","04 Jan 2026 18:44:29:970","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260104 18:44:29.970","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2861247","Week I-2 (1)","8","Date of Visit","30981174","0","04 Feb 2026 17:35:02:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 17:35:02.407","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2861248","Week I-4 (1)","9","Date of Visit","30981192","0","04 Feb 2026 17:41:06:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 17:41:06.163","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","2915382","Week I-8 (1)","10","Date of Visit","31657701","0","05 May 2026 13:40:17:057","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 13:40:17.057","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","3131881","Week I-12 (1)","11","Date of Visit","34632030","0","05 May 2026 14:12:23:863","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 14:12:23.863","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","186853","IL100032002","6330","3131907","Week M-4 (1)","15","Date of Visit","34632605","0","05 May 2026 13:59:37:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 13:59:37.000","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2847817","Screening","3","Date of Visit","30789439","0","05 May 2026 14:02:52:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 14:02:52.453","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2861735","Week I-0 (1)","7","Date of Visit","30987293","0","15 Feb 2026 09:39:21:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260215 09:39:21.010","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2938602","Week I-2 (1)","8","Date of Visit","32002987","0","15 Feb 2026 09:42:42:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260215 09:42:42.717","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2938603","Week I-4 (1)","9","Date of Visit","32003009","0","15 Feb 2026 09:46:49:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260215 09:46:49.200","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","2938604","Week I-8 (1)","10","Date of Visit","32003032","0","05 May 2026 13:41:15:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 13:41:15.320","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","3131885","Week I-12 (1)","11","Date of Visit","34632143","0","07 May 2026 18:25:08:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 18:25:08.680","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","3138179","Week M-4 (1)","15","Date of Visit","34743188","0","07 May 2026 18:33:22:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 18:33:22.723","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","191507","IL100032003","6330","3138155","Unscheduled 20260203","59","Date of Visit","34743013","0","07 May 2026 18:14:25:350","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","03 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNAWAS COLLECTED AFTER TO THE WEEK I-0 VISIT,","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 18:14:25.350","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2728003","Screening","3","Date of Visit","29403550","0","23 Nov 2025 09:19:11:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251123 09:19:11.433","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2831037","Week I-0 (1)","7","Date of Visit","30571620","0","15 Dec 2025 08:34:10:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251215 08:34:10.770","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2831526","Week I-2 (1)","8","Date of Visit","30578474","0","30 Dec 2025 05:20:19:713","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251230 05:20:19.713","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2857786","Week I-4 (1)","9","Date of Visit","30938721","0","13 Jan 2026 06:59:30:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260113 06:59:30.887","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2874160","Week I-8 (1)","10","Date of Visit","31139808","0","09 Feb 2026 05:39:59:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 05:39:59.283","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2921830","Week I-12 (1)","11","Date of Visit","31748503","0","09 Mar 2026 05:38:05:660","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 05:38:05.660","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","2950661","Week M-4 (1)","15","Date of Visit","32166400","0","09 Apr 2026 05:51:34:400","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 05:51:34.400","","" +"ISR","9372","DD5-IL10004","Shaare Zedek Medical Center","186797","IL100042001","6330","3056019","Week M-8 (1)","16","Date of Visit","33583181","0","03 May 2026 05:38:38:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260503 05:38:38.153","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2847330","Screening","3","Date of Visit","30782745","0","23 Dec 2025 12:58:55:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251223 12:58:55.223","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2883267","Week I-0 (1)","7","Date of Visit","31251468","0","20 Jan 2026 09:48:01:470","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 09:48:01.470","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2887406","Week I-2 (1)","8","Date of Visit","31301516","0","04 Feb 2026 12:58:17:793","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 12:58:17.793","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2914814","Week I-4 (1)","9","Date of Visit","31649315","0","16 Feb 2026 13:14:36:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 13:14:36.547","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","2939586","Week I-8 (1)","10","Date of Visit","32018449","0","16 Mar 2026 12:50:59:197","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 12:50:59.197","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","3010015","Week I-12 (1)","11","Date of Visit","32985621","0","14 Apr 2026 11:16:00:370","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 11:16:00.370","","" +"ISR","9373","DD5-IL10005","Rambam Health Care Campus","191485","IL100052001","6330","3065052","Week M-4 (1)","15","Date of Visit","33697825","0","11 May 2026 09:06:39:420","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 09:06:39.420","","" +"ISR","9803","DD5-IL10006","Bnai Zion Medical Center","192555","IL100062001","6330","2871928","Screening","3","Date of Visit","31111475","0","26 Jan 2026 07:48:57:610","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260126 07:48:57.610","","" +"ISR","9803","DD5-IL10006","Bnai Zion Medical Center","193851","IL100062002","6330","2899697","Screening","3","Date of Visit","31461568","0","28 Jan 2026 08:11:39:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 08:11:39.597","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","2899959","Screening","3","Date of Visit","31465173","0","28 Jan 2026 12:12:48:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 12:12:48.593","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","2953137","Week I-0 (1)","7","Date of Visit","32206092","0","24 Feb 2026 13:33:08:733","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 13:33:08.733","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","2955202","Week I-2 (1)","8","Date of Visit","32243241","0","13 Mar 2026 06:49:33:620","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 06:49:33.620","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","3005759","Week I-4 (1)","9","Date of Visit","32929099","0","24 Mar 2026 11:43:36:637","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 11:43:36.637","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","3029348","Week I-8 (1)","10","Date of Visit","33230452","0","21 Apr 2026 09:35:18:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 09:35:18.890","","" +"ISR","9820","DD5-IL10007","Galilee Medical Center","193864","IL100072001","6330","3079906","Week I-12 (1)","11","Date of Visit","33930459","0","19 May 2026 10:24:06:293","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 10:24:06.293","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2858602","Screening","3","Date of Visit","30948170","0","10 Feb 2026 14:06:45:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 14:06:45.593","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2883248","Week I-0 (1)","7","Date of Visit","31251321","0","18 Jan 2026 11:43:07:390","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260118 11:43:07.390","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2883316","Week I-2 (1)","8","Date of Visit","31251743","0","04 Feb 2026 14:49:36:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 14:49:36.957","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2915105","Week I-4 (1)","9","Date of Visit","31652786","0","17 Feb 2026 13:21:52:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 13:21:52.537","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","2941372","Week I-8 (1)","10","Date of Visit","32044442","0","17 Mar 2026 09:06:24:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 09:06:24.760","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","3012794","Week I-12 (1)","11","Date of Visit","33024084","0","15 Apr 2026 06:58:22:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 06:58:22.977","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","191934","IL100101001","6330","3066561","Week M-4 (1)","15","Date of Visit","33718572","0","13 May 2026 08:45:12:777","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 08:45:12.777","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","2921468","Screening","3","Date of Visit","31743754","0","08 Feb 2026 14:31:46:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260208 14:31:46.987","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","2953389","Week I-0 (1)","7","Date of Visit","32210283","0","26 Feb 2026 09:52:48:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 09:52:48.927","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","2959602","Week I-2 (1)","8","Date of Visit","32309626","0","11 Mar 2026 13:05:57:880","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 13:05:57.880","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","3001249","Week I-4 (1)","9","Date of Visit","32867355","0","24 Mar 2026 09:55:17:270","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 09:55:17.270","","" +"ISR","9421","DD5-IL10010","Shaare Zedek Medical Center 1","194852","IL100101002","6330","3028085","Week I-8 (1)","10","Date of Visit","33215616","0","21 Apr 2026 07:13:23:220","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 07:13:23.220","","" +"ISR","9405","DD5-IL10012","Schneider Children's Medical Center","203823","IL100121001","6330","3111036","Screening","3","Date of Visit","34309385","0","28 Apr 2026 09:20:12:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 09:20:12.120","","" +"ISR","9405","DD5-IL10012","Schneider Children's Medical Center","203823","IL100121001","6330","3181743","Week I-0 (1)","7","Date of Visit","34887437","0","11 May 2026 09:55:52:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 09:55:52.727","","" +"ISR","9405","DD5-IL10012","Schneider Children's Medical Center","203823","IL100121001","6330","3183141","Week I-2 (1)","8","Date of Visit","34909602","0","25 May 2026 09:31:34:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 09:31:34.153","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","201872","IL100131001","6330","3066538","Screening","3","Date of Visit","33718195","0","15 Apr 2026 10:29:22:067","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 10:29:22.067","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","201872","IL100131001","6330","3125966","Week I-0 (1)","7","Date of Visit","34531704","0","03 May 2026 12:33:46:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260503 12:33:46.337","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","201872","IL100131001","6330","3125983","Week I-2 (1)","8","Date of Visit","34532101","0","17 May 2026 09:15:15:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260517 09:15:15.783","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","202336","IL100131002","6330","3075668","Screening","3","Date of Visit","33865397","0","19 Apr 2026 13:47:06:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260419 13:47:06.730","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","202336","IL100131002","6330","3168950","Week I-0 (1)","7","Date of Visit","34840267","0","10 May 2026 13:02:07:057","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260510 13:02:07.057","","" +"ISR","9427","DD5-IL10013","Shamir Medical Center Assaf Harofeh","202336","IL100131002","6330","3168968","Week I-2 (1)","8","Date of Visit","34840659","0","24 May 2026 13:06:48:390","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260524 13:06:48.390","","" +"IND","9734","DD5-IN10001","Fortis Memorial Research Institute","202006","IN100012001","6330","3069518","Screening","3","Date of Visit","33768791","0","17 Apr 2026 12:42:24:133","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 12:42:24.133","","" +"IND","9734","DD5-IN10001","Fortis Memorial Research Institute","202006","IN100012001","6330","3128698","Week I-0 (1)","7","Date of Visit","34579338","0","07 May 2026 09:28:25:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 09:28:25.703","","" +"IND","9492","DD5-IN10003","Sir Ganga Ram Hospital","210862","IN100032001","6330","3193790","Screening","3","Date of Visit","35050585","0","25 May 2026 08:55:01:503","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 08:55:01.503","","" +"IND","9492","DD5-IN10003","Sir Ganga Ram Hospital","211161","IN100032002","6330","3200392","Screening","3","Date of Visit","35148125","0","19 May 2026 07:02:31:000","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 07:02:31.000","","" +"IND","9492","DD5-IN10003","Sir Ganga Ram Hospital","211384","IN100032003","6330","3205115","Screening","3","Date of Visit","35212001","0","21 May 2026 06:51:09:047","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 06:51:09.047","","" +"IND","9445","DD5-IN10004","Mazumdar Shaw Medical Centre - Narayana Hrudayalaya Limited","200796","IN100042001","6330","3044351","Screening","3","Date of Visit","33431771","0","06 Apr 2026 04:11:31:777","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 04:11:31.777","","" +"IND","9445","DD5-IN10004","Mazumdar Shaw Medical Centre - Narayana Hrudayalaya Limited","200796","IN100042001","6330","3187550","Week I-0 (1)","7","Date of Visit","34962935","0","16 May 2026 04:18:19:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260516 04:18:19.217","","" +"IND","9541","DD5-IN10005","Indraprastha Apollo Hospital","199819","IN100052001","6330","3026050","Screening","3","Date of Visit","33188997","0","19 May 2026 06:49:22:220","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 06:49:22.220","","" +"IND","9541","DD5-IN10005","Indraprastha Apollo Hospital","199819","IN100052001","6330","3110817","Week I-0 (1)","7","Date of Visit","34306469","0","28 Apr 2026 06:46:39:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 06:46:39.853","","" +"IND","9541","DD5-IN10005","Indraprastha Apollo Hospital","199819","IN100052001","6330","3113590","Week I-2 (1)","8","Date of Visit","34341931","0","12 May 2026 09:20:26:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 09:20:26.757","","" +"IND","9541","DD5-IN10005","Indraprastha Apollo Hospital","204540","IN100052002","6330","3126326","Screening","3","Date of Visit","34535436","0","12 May 2026 05:53:17:040","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 05:53:17.040","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","197669","IN100062001","6330","2979581","Screening","3","Date of Visit","32560266","0","07 Mar 2026 03:50:05:840","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260307 03:50:05.840","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","197669","IN100062001","6330","3048047","Week I-0 (1)","7","Date of Visit","33485497","0","03 Apr 2026 10:58:02:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 10:58:02.297","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","197669","IN100062001","6330","3048246","Week I-2 (1)","8","Date of Visit","33487766","0","23 Apr 2026 10:50:06:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 10:50:06.857","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","197669","IN100062001","6330","3088634","Week I-4 (1)","9","Date of Visit","34065892","0","08 May 2026 09:36:52:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 09:36:52.543","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198406","IN100062002","6330","2996693","Screening","3","Date of Visit","32808233","0","11 Mar 2026 10:38:35:233","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 10:38:35.233","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198406","IN100062002","6330","3049291","Week I-0 (1)","7","Date of Visit","33500062","0","06 Apr 2026 08:42:20:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 08:42:20.950","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198406","IN100062002","6330","3049433","Week I-2 (1)","8","Date of Visit","33501442","0","23 Apr 2026 10:53:49:177","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 10:53:49.177","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198406","IN100062002","6330","3088644","Week I-4 (1)","9","Date of Visit","34066043","0","08 May 2026 11:44:52:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 11:44:52.640","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3000196","Screening","3","Date of Visit","32852136","0","01 Apr 2026 06:07:35:747","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 06:07:35.747","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3050954","Week I-0 (1)","7","Date of Visit","33518460","0","07 Apr 2026 07:39:06:197","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 07:39:06.197","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3051008","Week I-2 (1)","8","Date of Visit","33519142","0","23 Apr 2026 10:55:01:693","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 10:55:01.693","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3088647","Week I-4 (1)","9","Date of Visit","34066084","0","08 May 2026 12:19:05:753","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 12:19:05.753","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","198596","IN100062003","6330","3088809","Unscheduled 20260414","59","Date of Visit","34069084","0","23 Apr 2026 11:59:52:710","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","14 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","FOR ADVERSE EVENT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 11:59:52.710","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","199166","IN100062004","6330","3012359","Screening","3","Date of Visit","33017625","0","01 Apr 2026 06:09:04:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 06:09:04.980","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","199166","IN100062004","6330","3053226","Week I-0 (1)","7","Date of Visit","33549678","0","08 Apr 2026 07:44:39:527","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 07:44:39.527","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","199166","IN100062004","6330","3053380","Week I-2 (1)","8","Date of Visit","33551799","0","23 Apr 2026 10:56:50:093","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 10:56:50.093","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","199166","IN100062004","6330","3088652","Week I-4 (1)","9","Date of Visit","34066114","0","08 May 2026 12:30:27:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 12:30:27.180","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200085","IN100062005","6330","3031212","Screening","3","Date of Visit","33255012","0","01 Apr 2026 06:10:24:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 06:10:24.417","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200085","IN100062005","6330","3048821","Unscheduled 20260404","59","Date of Visit","33494973","0","04 Apr 2026 07:15:40:230","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","04 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SCREENING STOOL SAMPLE RETEST FOR STOOL CULTURE,OVA AND PARASITES 1 AND 2 DUE TO SPECIMEN LEAKED IN TRANSIT.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260404 07:15:40.230","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200085","IN100062005","6330","3088903","Unscheduled 20260420","59","Date of Visit","34071708","0","23 Apr 2026 12:18:46:593","Tier 5","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","E-DIARY ISSUE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 12:18:46.593","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200271","IN100062006","6330","3034923","Screening","3","Date of Visit","33304995","0","01 Apr 2026 06:12:10:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 06:12:10.627","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200271","IN100062006","6330","3087183","Week I-0 (1)","7","Date of Visit","34039300","0","23 Apr 2026 11:09:49:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 11:09:49.223","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200271","IN100062006","6330","3088678","Week I-2 (1)","8","Date of Visit","34066389","0","08 May 2026 12:35:41:860","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 12:35:41.860","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200722","IN100062007","6330","3042852","Screening","3","Date of Visit","33407078","0","31 Mar 2026 14:05:26:130","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 14:05:26.130","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200722","IN100062007","6330","3079534","Week I-0 (1)","7","Date of Visit","33925120","0","23 Apr 2026 11:18:13:783","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 11:18:13.783","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","200722","IN100062007","6330","3088695","Week I-2 (1)","8","Date of Visit","34066540","0","08 May 2026 12:39:18:820","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 12:39:18.820","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201793","IN100062008","6330","3064680","Screening","3","Date of Visit","33693412","0","14 Apr 2026 11:43:21:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 11:43:21.830","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201793","IN100062008","6330","3138776","Week I-0 (1)","7","Date of Visit","34751870","0","08 May 2026 10:45:04:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 10:45:04.710","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201816","IN100062009","6330","3065024","Screening","3","Date of Visit","33697574","0","14 Apr 2026 11:43:44:760","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 11:43:44.760","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201816","IN100062009","6330","3177995","Week I-0 (1)","7","Date of Visit","34879399","0","11 May 2026 08:05:50:543","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 08:05:50.543","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201894","IN100062010","6330","3067056","Screening","3","Date of Visit","33725953","0","17 Apr 2026 12:13:11:100","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 12:13:11.100","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","201915","IN100062011","6330","3067470","Screening","3","Date of Visit","33738468","0","17 Apr 2026 12:05:44:210","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 12:05:44.210","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","202049","IN100062012","6330","3070335","Screening","3","Date of Visit","33782595","0","17 Apr 2026 06:50:08:397","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 06:50:08.397","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","202049","IN100062012","6330","3198277","Week I-0 (1)","7","Date of Visit","35117770","0","19 May 2026 05:54:18:950","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 05:54:18.950","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","202414","IN100062013","6330","3077202","Screening","3","Date of Visit","33886526","0","23 Apr 2026 10:43:06:503","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 10:43:06.503","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","202414","IN100062013","6330","3202711","Week I-0 (1)","7","Date of Visit","35181708","0","20 May 2026 12:12:13:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 12:12:13.613","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","203049","IN100062014","6330","3091605","Screening","3","Date of Visit","34104500","0","25 Apr 2026 05:20:41:887","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260425 05:20:41.887","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","204565","IN100062015","6330","3126831","Screening","3","Date of Visit","34546975","0","04 May 2026 09:12:58:987","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 09:12:58.987","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","204729","IN100062016","6330","3129906","Screening","3","Date of Visit","34595716","0","07 May 2026 12:16:33:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 12:16:33.290","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","210726","IN100062017","6330","3191457","Screening","3","Date of Visit","35017256","0","13 May 2026 11:08:50:183","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 11:08:50.183","","" +"IND","9566","DD5-IN10006","SIDS (Surat Institute of Digestive Sciences) Hospital and Research Centre","211181","IN100062018","6330","3200749","Screening","3","Date of Visit","35153416","0","20 May 2026 12:15:28:930","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 12:15:28.930","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","199121","IN100072001","6330","3011433","Screening","3","Date of Visit","33004052","0","07 May 2026 06:35:20:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 06:35:20.667","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","199121","IN100072001","6330","3068789","Week I-0 (1)","7","Date of Visit","33756249","0","06 May 2026 12:48:15:917","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 12:48:15.917","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","199121","IN100072001","6330","3134654","Week I-2 (1)","8","Date of Visit","34682841","0","06 May 2026 12:53:46:243","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 12:53:46.243","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","199121","IN100072001","6330","3134687","Week I-4 (1)","9","Date of Visit","34683074","0","13 May 2026 08:52:18:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 08:52:18.177","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200518","IN100072002","6330","3039725","Screening","3","Date of Visit","33370454","0","06 Apr 2026 04:44:19:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 04:44:19.567","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200518","IN100072002","6330","3116869","Week I-0 (1)","7","Date of Visit","34397387","0","06 May 2026 13:16:44:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 13:16:44.037","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200518","IN100072002","6330","3134756","Week I-2 (1)","8","Date of Visit","34684530","0","14 May 2026 10:49:35:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 10:49:35.577","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200687","IN100072003","6330","3041980","Screening","3","Date of Visit","33397846","0","07 May 2026 04:04:27:550","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 04:04:27.550","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","203805","IN100072004","6330","3110750","Screening","3","Date of Visit","34304741","0","06 May 2026 11:16:30:517","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 11:16:30.517","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","203805","IN100072004","6330","3195769","Week I-0 (1)","7","Date of Visit","35081316","0","15 May 2026 08:37:51:307","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 08:37:51.307","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200241","IN100082001","6330","3034242","Screening","3","Date of Visit","33295085","0","15 Apr 2026 05:34:34:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 05:34:34.130","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200241","IN100082001","6330","3068775","Week I-0 (1)","7","Date of Visit","33755969","0","04 May 2026 10:08:15:150","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 10:08:15.150","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200241","IN100082001","6330","3127048","Week I-2 (1)","8","Date of Visit","34551770","0","04 May 2026 10:21:24:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 10:21:24.317","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200507","IN100082002","6330","3039513","Screening","3","Date of Visit","33367610","0","04 May 2026 11:11:11:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 11:11:11.533","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200507","IN100082002","6330","3066424","Week I-0 (1)","7","Date of Visit","33716108","0","15 Apr 2026 12:14:31:190","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 12:14:31.190","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200507","IN100082002","6330","3067525","Week I-2 (1)","8","Date of Visit","33739270","0","04 May 2026 11:28:26:470","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 11:28:26.470","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200528","IN100082003","6330","3039902","Screening","3","Date of Visit","33373128","0","13 May 2026 06:20:53:653","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 06:20:53.653","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200528","IN100082003","6330","3061157","Week I-0 (1)","7","Date of Visit","33645618","0","04 May 2026 06:28:40:187","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 06:28:40.187","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200528","IN100082003","6330","3126366","Week I-2 (1)","8","Date of Visit","34536437","0","04 May 2026 06:43:02:927","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 06:43:02.927","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","200528","IN100082003","6330","3126373","Week I-4 (1)","9","Date of Visit","34536735","0","13 May 2026 12:11:57:290","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 12:11:57.290","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","202365","IN100082004","6330","3076340","Screening","3","Date of Visit","33872115","0","13 May 2026 06:19:58:183","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 06:19:58.183","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","204256","IN100082005","6330","3119813","Screening","3","Date of Visit","34457441","0","04 May 2026 11:32:46:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 11:32:46.830","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","204989","IN100082006","6330","3135797","Screening","3","Date of Visit","34705877","0","12 May 2026 11:30:04:257","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 11:30:04.257","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","210498","IN100082007","6330","3186979","Screening","3","Date of Visit","34952935","0","12 May 2026 05:49:19:117","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 05:49:19.117","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","198395","IN100102001","6330","2996458","Screening","3","Date of Visit","32805212","0","02 May 2026 11:00:59:063","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260502 11:00:59.063","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","198395","IN100102001","6330","3063701","Week I-0 (1)","7","Date of Visit","33680445","0","14 Apr 2026 12:18:22:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 12:18:22.157","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","198395","IN100102001","6330","3065245","Week I-2 (1)","8","Date of Visit","33700271","0","28 Apr 2026 11:53:41:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:53:41.290","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","198395","IN100102001","6330","3115019","Week I-4 (1)","9","Date of Visit","34367450","0","11 May 2026 06:23:38:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 06:23:38.623","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","199194","IN100102002","6330","3012959","Screening","3","Date of Visit","33025734","0","02 May 2026 11:01:25:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260502 11:01:25.287","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","199194","IN100102002","6330","3082741","Week I-0 (1)","7","Date of Visit","33971869","0","22 Apr 2026 09:18:56:123","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 09:18:56.123","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","199194","IN100102002","6330","3083561","Week I-2 (1)","8","Date of Visit","33983172","0","08 May 2026 11:51:35:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 11:51:35.563","","" +"IND","9530","DD5-IN10010","Yashoda Super Speciality Hospitals","199194","IN100102002","6330","3168106","Week I-4 (1)","9","Date of Visit","34829128","0","22 May 2026 07:13:33:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:13:33.827","","" +"IND","9450","DD5-IN10014","Gujarat Gastro and Vascular Hospital","201037","IN100142001","6330","3049361","Screening","3","Date of Visit","33500671","0","17 Apr 2026 06:24:35:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 06:24:35.407","","" +"IND","9450","DD5-IN10014","Gujarat Gastro and Vascular Hospital","201037","IN100142001","6330","3187219","Week I-0 (1)","7","Date of Visit","34956726","0","14 May 2026 07:13:04:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 07:13:04.033","","" +"IND","9450","DD5-IN10014","Gujarat Gastro and Vascular Hospital","201645","IN100142002","6330","3061491","Screening","3","Date of Visit","33649848","0","24 Apr 2026 05:06:37:973","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 05:06:37.973","","" +"IND","9450","DD5-IN10014","Gujarat Gastro and Vascular Hospital","211058","IN100142003","6330","3198343","Screening","3","Date of Visit","35118846","0","18 May 2026 07:57:53:510","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 07:57:53.510","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","199890","IN100152001","6330","3027428","Screening","3","Date of Visit","33207179","0","24 Mar 2026 13:18:28:410","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 13:18:28.410","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","199890","IN100152001","6330","3075311","Week I-0 (1)","7","Date of Visit","33861333","0","25 Apr 2026 04:41:51:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260425 04:41:51.853","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","199890","IN100152001","6330","3096131","Week I-2 (1)","8","Date of Visit","34154965","0","07 May 2026 10:38:53:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 10:38:53.597","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","199890","IN100152001","6330","3137009","Week I-4 (1)","9","Date of Visit","34724824","0","19 May 2026 04:25:06:443","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 04:25:06.443","","" +"IND","9508","DD5-IN10015","P D Hinduja National Hospital and Medical Research Center","205143","IN100152002","6330","3138837","Screening","3","Date of Visit","34752707","0","11 May 2026 06:42:51:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 06:42:51.527","","" +"IND","9512","DD5-IN10018","SUM Ultimate Medicare","201456","IN100182001","6330","3057681","Screening","3","Date of Visit","33604262","0","04 May 2026 08:20:06:847","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 08:20:06.847","","" +"IND","9512","DD5-IN10018","SUM Ultimate Medicare","202324","IN100182002","6330","3075322","Screening","3","Date of Visit","33861413","0","04 May 2026 08:19:41:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 08:19:41.810","","" +"IND","9462","DD5-IN10020","Lisie Hospital","201741","IN100202001","6330","3063608","Screening","3","Date of Visit","33679282","0","22 Apr 2026 06:40:13:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 06:40:13.397","","" +"IND","9713","DD5-IN10022","Fortis Hospital","200933","IN100222001","6330","3047259","Screening","3","Date of Visit","33474212","0","22 Apr 2026 07:34:12:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 07:34:12.160","","" +"IND","9713","DD5-IN10022","Fortis Hospital","200933","IN100222001","6330","3116733","Week I-0 (1)","7","Date of Visit","34395369","0","29 Apr 2026 09:37:46:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 09:37:46.890","","" +"IND","9481","DD5-IN10023","GB Pant Institute of Post Graduate Medical Education & Research","210857","IN100232001","6330","3193712","Screening","3","Date of Visit","35049900","0","14 May 2026 10:21:55:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 10:21:55.267","","" +"IND","9481","DD5-IN10023","GB Pant Institute of Post Graduate Medical Education & Research","210861","IN100232002","6330","3193781","Screening","3","Date of Visit","35050512","0","14 May 2026 10:24:22:740","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 10:24:22.740","","" +"IND","9481","DD5-IN10023","GB Pant Institute of Post Graduate Medical Education & Research","211009","IN100232003","6330","3197342","Screening","3","Date of Visit","35106050","0","16 May 2026 06:52:04:440","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","16 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260516 06:52:04.440","","" +"IND","9543","DD5-IN10024","ALL INDIA INSTITUTE OF MEDICAL SCIENCES","203243","IN100242001","6330","3096236","Screening","3","Date of Visit","34156270","0","28 Apr 2026 08:24:00:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 08:24:00.230","","" +"ITA","9065","DD5-IT10001","Istituto Clinico Humanitas","198405","IT100012001","6330","2996683","Screening","3","Date of Visit","32808075","0","25 Mar 2026 14:09:36:937","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 14:09:36.937","","" +"ITA","9065","DD5-IT10001","Istituto Clinico Humanitas","198405","IT100012001","6330","3079581","Week I-0 (1)","7","Date of Visit","33926008","0","24 Apr 2026 13:38:59:580","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 13:38:59.580","","" +"ITA","9065","DD5-IT10001","Istituto Clinico Humanitas","198405","IT100012001","6330","3092851","Week I-2 (1)","8","Date of Visit","34116928","0","04 May 2026 14:56:46:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 14:56:46.667","","" +"ITA","9065","DD5-IT10001","Istituto Clinico Humanitas","201785","IT100012002","6330","3064541","Screening","3","Date of Visit","33691667","0","23 Apr 2026 14:56:56:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 14:56:56.527","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","2940645","Screening","3","Date of Visit","32033725","0","18 Feb 2026 13:50:43:487","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260218 13:50:43.487","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","3040145","Week I-0 (1)","7","Date of Visit","33376205","0","02 Apr 2026 14:33:32:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 14:33:32.763","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","3047370","Week I-2 (1)","8","Date of Visit","33475822","0","14 Apr 2026 09:47:07:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 09:47:07.440","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","3064609","Week I-4 (1)","9","Date of Visit","33692278","0","28 Apr 2026 10:51:13:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 10:51:13.477","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","195819","IT100022001","6330","3065381","Unscheduled 20260217","59","Date of Visit","33701980","0","14 Apr 2026 13:18:33:500","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","17 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTED ON SCREENING VISIT AND NOT AT WEEK I-0","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 13:18:33.500","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","199332","IT100022002","6330","3015794","Screening","3","Date of Visit","33061119","0","26 Mar 2026 14:42:34:807","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 14:42:34.807","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","199332","IT100022002","6330","3116998","Week I-0 (1)","7","Date of Visit","34399261","0","29 Apr 2026 12:22:44:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 12:22:44.813","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","199332","IT100022002","6330","3118899","Week I-2 (1)","8","Date of Visit","34444770","0","13 May 2026 13:14:19:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 13:14:19.430","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","201879","IT100022003","6330","3066685","Screening","3","Date of Visit","33720111","0","17 Apr 2026 11:54:34:490","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 11:54:34.490","","" +"ITA","9167","DD5-IT10002","Casa Sollievo Della Sofferenza IRCCS","202688","IT100022004","6330","3083232","Screening","3","Date of Visit","33978203","0","06 May 2026 11:22:41:390","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 11:22:41.390","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","198766","IT100042001","6330","3003373","Screening","3","Date of Visit","32894634","0","07 May 2026 08:35:17:320","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 08:35:17.320","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","199328","IT100042002","6330","3015727","Screening","3","Date of Visit","33060264","0","27 Apr 2026 14:38:11:343","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 14:38:11.343","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","200107","IT100042003","6330","3031640","Screening","3","Date of Visit","33261408","0","19 May 2026 14:26:16:263","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 14:26:16.263","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","201761","IT100042004","6330","3064087","Screening","3","Date of Visit","33685833","0","27 Apr 2026 14:41:00:330","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 14:41:00.330","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","201761","IT100042004","6330","3136026","Week I-0 (1)","7","Date of Visit","34709467","0","07 May 2026 09:11:14:177","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 09:11:14.177","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","201982","IT100042005","6330","3069092","Screening","3","Date of Visit","33761206","0","19 May 2026 14:34:43:653","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 14:34:43.653","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","210693","IT100042006","6330","3190823","Screening","3","Date of Visit","35007726","0","13 May 2026 13:34:12:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 13:34:12.593","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","211284","IT100042007","6330","3202951","Screening","3","Date of Visit","35184105","0","20 May 2026 08:01:52:823","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 08:01:52.823","","" +"ITA","9135","DD5-IT10005","Fondazione Policlinico Universitario A Gemelli IRCCS","198577","IT100052001","6330","2999868","Screening","3","Date of Visit","32847605","0","02 Apr 2026 12:47:25:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 12:47:25.313","","" +"ITA","9135","DD5-IT10005","Fondazione Policlinico Universitario A Gemelli IRCCS","198577","IT100052001","6330","3091968","Week I-0 (1)","7","Date of Visit","34108612","0","28 Apr 2026 08:34:17:670","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 08:34:17.670","","" +"ITA","9135","DD5-IT10005","Fondazione Policlinico Universitario A Gemelli IRCCS","198577","IT100052001","6330","3114065","Week I-2 (1)","8","Date of Visit","34350997","0","08 May 2026 12:44:50:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 12:44:50.453","","" +"ITA","9205","DD5-IT10011","Azienda Ospedaliera San Camillo-Forlanini","196707","IT100112001","6330","2959281","Screening","3","Date of Visit","32306001","0","23 Mar 2026 14:09:23:443","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 14:09:23.443","","" +"ITA","9169","DD5-IT10013","Azienda Ospedaliero Universitaria Careggi","200809","IT100132001","6330","3044611","Screening","3","Date of Visit","33436254","0","20 May 2026 08:49:00:127","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 08:49:00.127","","" +"ITA","9169","DD5-IT10013","Azienda Ospedaliero Universitaria Careggi","200809","IT100132001","6330","3133846","Week I-0 (1)","7","Date of Visit","34667122","0","06 May 2026 10:43:43:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 10:43:43.877","","" +"ITA","9169","DD5-IT10013","Azienda Ospedaliero Universitaria Careggi","200809","IT100132001","6330","3134111","Week I-2 (1)","8","Date of Visit","34671014","0","20 May 2026 09:01:37:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 09:01:37.317","","" +"ITA","9169","DD5-IT10013","Azienda Ospedaliero Universitaria Careggi","200815","IT100132002","6330","3044735","Screening","3","Date of Visit","33438271","0","02 Apr 2026 09:31:55:030","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 09:31:55.030","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","2908555","Screening","3","Date of Visit","31571740","0","02 Feb 2026 14:37:20:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 14:37:20.287","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","2996576","Week I-0 (1)","7","Date of Visit","32807044","0","10 Mar 2026 15:01:09:007","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 15:01:09.007","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","2998155","Week I-2 (1)","8","Date of Visit","32826192","0","24 Mar 2026 11:49:20:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 11:49:20.717","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","3029402","Week I-4 (1)","9","Date of Visit","33231292","0","09 Apr 2026 09:04:17:227","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 09:04:17.227","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194242","IT100172001","6330","3037866","Unscheduled 20260327","59","Date of Visit","33346914","0","27 Mar 2026 09:48:19:050","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","STOOL PK COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 09:48:19.050","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194349","IT100172002","6330","2910583","Screening","3","Date of Visit","31594524","0","05 Feb 2026 13:52:51:610","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 13:52:51.610","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194349","IT100172002","6330","3006284","Week I-0 (1)","7","Date of Visit","32936393","0","24 Mar 2026 14:06:12:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 14:06:12.087","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194349","IT100172002","6330","3029812","Week I-2 (1)","8","Date of Visit","33236010","0","27 Mar 2026 09:12:14:943","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 09:12:14.943","","" +"ITA","9185","DD5-IT10017","Ospedale Sacro Cuore Negrar-Verona","194349","IT100172002","6330","3037757","Week I-4 (1)","9","Date of Visit","33344907","0","10 Apr 2026 10:42:09:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 10:42:09.453","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","2894336","Screening","3","Date of Visit","31389562","0","12 Feb 2026 09:18:56:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 09:18:56.497","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","2961881","Week I-0 (1)","7","Date of Visit","32340217","0","27 Feb 2026 09:52:46:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 09:52:46.247","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","2962747","Week I-2 (1)","8","Date of Visit","32350088","0","16 Mar 2026 05:22:43:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 05:22:43.567","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","3008584","Week I-4 (1)","9","Date of Visit","32965422","0","20 May 2026 02:31:40:427","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 02:31:40.427","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","3196238","Induction Early Discontinuation (1)","12","Date of Visit","35087394","0","15 May 2026 09:37:22:203","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 09:37:22.203","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","3196239","Induction Safety Follow Up (1)","13","Date of Visit","35087395","0","15 May 2026 09:28:02:080","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 09:28:02.080","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","2894363","Screening","3","Date of Visit","31389787","0","16 Mar 2026 09:48:05:143","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 09:48:05.143","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","2947907","Week I-0 (1)","7","Date of Visit","32131794","0","20 Feb 2026 06:08:00:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260220 06:08:00.353","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","2948052","Week I-2 (1)","8","Date of Visit","32133241","0","06 Mar 2026 09:21:35:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 09:21:35.833","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","2981560","Week I-4 (1)","9","Date of Visit","32588040","0","18 Mar 2026 04:13:46:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 04:13:46.393","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","3015090","Week I-8 (1)","10","Date of Visit","33052833","0","17 Apr 2026 10:20:35:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 10:20:35.010","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193596","JP100022002","6330","3073783","Week I-12 (1)","11","Date of Visit","33839568","0","15 May 2026 08:53:31:643","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 08:53:31.643","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2707616","Screening","3","Date of Visit","29142989","0","15 Dec 2025 02:56:40:917","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251215 02:56:40.917","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2825804","Week I-0 (1)","7","Date of Visit","30506069","0","15 Dec 2025 04:05:38:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251215 04:05:38.647","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2830822","Week I-2 (1)","8","Date of Visit","30569235","0","12 Feb 2026 08:33:55:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 08:33:55.417","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2931287","Week I-4 (1)","9","Date of Visit","31887122","0","12 Feb 2026 08:37:09:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 08:37:09.127","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2931291","Week I-8 (1)","10","Date of Visit","31887219","0","12 Feb 2026 08:40:28:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 08:40:28.913","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","2931294","Week I-12 (1)","11","Date of Visit","31887285","0","16 Mar 2026 09:34:55:170","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 09:34:55.170","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","3009305","Week M-4 (1)","15","Date of Visit","32975502","0","01 Apr 2026 06:24:10:917","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 06:24:10.917","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","185818","JP100032001","6330","3044343","Week M-8 (1)","16","Date of Visit","33431740","0","20 May 2026 13:34:26:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 13:34:26.780","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2712598","Screening","3","Date of Visit","29193200","0","15 Dec 2025 05:46:49:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251215 05:46:49.317","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2814136","Week I-0 (1)","7","Date of Visit","30354165","0","15 Dec 2025 06:30:41:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251215 06:30:41.267","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2830954","Week I-2 (1)","8","Date of Visit","30570643","0","12 Feb 2026 08:43:04:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 08:43:04.367","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2931308","Week I-4 (1)","9","Date of Visit","31887450","0","12 Feb 2026 08:46:50:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 08:46:50.463","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2931324","Week I-8 (1)","10","Date of Visit","31887712","0","12 Feb 2026 08:50:20:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 08:50:20.047","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","2931337","Week I-12 (1)","11","Date of Visit","31887886","0","17 Mar 2026 02:13:43:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 02:13:43.150","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","3011153","Week M-4 (1)","15","Date of Visit","33000575","0","08 Apr 2026 04:09:51:420","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 04:09:51.420","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","186067","JP100032002","6330","3052769","Week M-8 (1)","16","Date of Visit","33543525","0","22 May 2026 04:33:47:003","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 04:33:47.003","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","2895864","Screening","3","Date of Visit","31412922","0","12 Feb 2026 07:48:56:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 07:48:56.927","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","2933977","Week I-0 (1)","7","Date of Visit","31927409","0","17 Mar 2026 02:55:49:567","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 02:55:49.567","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","3011199","Week I-2 (1)","8","Date of Visit","33001156","0","17 Mar 2026 03:02:01:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 03:02:01.517","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","3011204","Week I-4 (1)","9","Date of Visit","33001508","0","08 Apr 2026 06:44:48:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 06:44:48.760","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","3053176","Week I-8 (1)","10","Date of Visit","33549069","0","10 Apr 2026 05:40:45:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 05:40:45.050","","" +"JPN","9088","DD5-JP10003","Tokyo Metropolitan Bokutoh Hospital","193660","JP100032003","6330","3058794","Week I-12 (1)","11","Date of Visit","33619625","0","22 May 2026 05:44:30:203","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 05:44:30.203","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2672290","Screening","3","Date of Visit","28722496","0","12 Nov 2025 04:49:56:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251112 04:49:56.407","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2807306","Week I-0 (1)","7","Date of Visit","30269044","0","08 Dec 2025 06:29:06:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251208 06:29:06.957","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2807555","Week I-2 (1)","8","Date of Visit","30272103","0","23 Dec 2025 02:50:17:797","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251223 02:50:17.797","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2850046","Week I-4 (1)","9","Date of Visit","30822656","0","05 Jan 2026 05:47:10:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260105 05:47:10.623","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2861547","Week I-8 (1)","10","Date of Visit","30984288","0","30 Jan 2026 05:24:34:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 JAN 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260130 05:24:34.890","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","2905465","Week I-12 (1)","11","Date of Visit","31532062","0","13 Mar 2026 07:34:26:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 07:34:26.567","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","3005876","Week M-4 (1)","15","Date of Visit","32930444","0","31 Mar 2026 08:55:31:473","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 08:55:31.473","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","183853","JP100052001","6330","3042477","Week M-8 (1)","16","Date of Visit","33403058","0","30 Apr 2026 02:54:50:457","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 02:54:50.457","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","187078","JP100052002","6330","2756964","Screening","3","Date of Visit","29548714","0","15 Jan 2026 01:17:00:787","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260115 01:17:00.787","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2834096","Screening","3","Date of Visit","30615373","0","19 Jan 2026 01:33:35:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 01:33:35.727","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2895881","Week I-0 (1)","7","Date of Visit","31413366","0","30 Jan 2026 06:07:30:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260130 06:07:30.437","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2905533","Week I-2 (1)","8","Date of Visit","31532930","0","09 Feb 2026 06:08:01:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 06:08:01.400","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2921871","Week I-4 (1)","9","Date of Visit","31748829","0","26 Feb 2026 01:07:25:500","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 01:07:25.500","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","2958737","Week I-8 (1)","10","Date of Visit","32297346","0","23 Mar 2026 07:47:47:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 07:47:47.683","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","190833","JP100052003","6330","3024791","Week I-12 (1)","11","Date of Visit","33172075","0","30 Apr 2026 07:12:29:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:12:29.833","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","198972","JP100052004","6330","3008291","Screening","3","Date of Visit","32962612","0","18 Mar 2026 04:48:42:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 04:48:42.913","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","198972","JP100052004","6330","3078954","Week I-0 (1)","7","Date of Visit","33916463","0","21 Apr 2026 07:13:05:467","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 07:13:05.467","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","198972","JP100052004","6330","3079341","Week I-2 (1)","8","Date of Visit","33922253","0","07 May 2026 02:01:25:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 02:01:25.753","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","198972","JP100052004","6330","3135612","Week I-4 (1)","9","Date of Visit","34701861","0","18 May 2026 03:21:53:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 03:21:53.980","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2592173","Screening","3","Date of Visit","27823268","0","28 Oct 2025 00:01:40:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251028 00:01:40.137","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2659762","Week I-0 (1)","7","Date of Visit","28588473","0","04 Nov 2025 06:41:02:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251104 06:41:02.543","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2664251","Week I-2 (1)","8","Date of Visit","28635600","0","15 Nov 2025 04:03:08:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251115 04:03:08.207","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2701830","Week I-4 (1)","9","Date of Visit","29079787","0","29 Nov 2025 06:49:31:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251129 06:49:31.973","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2780021","Week I-8 (1)","10","Date of Visit","29857611","0","27 Dec 2025 05:44:04:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251227 05:44:04.977","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2855736","Week I-12 (1)","11","Date of Visit","30913136","0","24 Jan 2026 06:19:53:360","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260124 06:19:53.360","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2895488","Week M-4 (1)","15","Date of Visit","31408946","0","19 Feb 2026 03:17:21:807","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 03:17:21.807","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","2945409","Week M-8 (1)","16","Date of Visit","32097337","0","21 Mar 2026 05:27:00:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260321 05:27:00.010","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","3023573","Week M-12 (1)","17","Date of Visit","33156138","0","18 Apr 2026 02:25:10:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260418 02:25:10.743","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","179665","JP100062001","6330","3075276","Week M-16 (1)","18","Date of Visit","33860780","0","16 May 2026 02:57:22:713","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260516 02:57:22.713","","" +"JPN","9232","DD5-JP10006","Kagoshima IBD Gastroenterology Clinic","204506","JP100062002","6330","3125817","Screening","3","Date of Visit","34529514","0","02 May 2026 01:31:58:800","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","02 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260502 01:31:58.800","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2690597","Screening","3","Date of Visit","28943763","0","18 Nov 2025 04:56:45:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251118 04:56:45.630","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2847622","Week I-0 (1)","7","Date of Visit","30787042","0","23 Dec 2025 05:33:38:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251223 05:33:38.897","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2850136","Week I-2 (1)","8","Date of Visit","30823659","0","07 Jan 2026 08:01:42:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260107 08:01:42.717","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2865477","Week I-4 (1)","9","Date of Visit","31034363","0","19 Jan 2026 07:50:42:653","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 07:50:42.653","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2884330","Week I-8 (1)","10","Date of Visit","31265008","0","14 Feb 2026 02:51:08:357","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260214 02:51:08.357","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","2938187","Week I-12 (1)","11","Date of Visit","31997113","0","01 Apr 2026 04:24:38:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 04:24:38.647","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","184816","JP100082001","6330","3044232","Week M-4 (1)","15","Date of Visit","33429815","0","25 Apr 2026 02:46:47:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260425 02:46:47.983","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","2909865","Screening","3","Date of Visit","31587693","0","07 May 2026 02:40:10:943","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 02:40:10.943","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","2942967","Week I-0 (1)","7","Date of Visit","32064949","0","25 Feb 2026 01:32:12:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 01:32:12.160","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","2956141","Week I-2 (1)","8","Date of Visit","32256926","0","04 Mar 2026 06:38:57:840","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 06:38:57.840","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","2975827","Week I-4 (1)","9","Date of Visit","32514880","0","17 Mar 2026 07:26:11:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 07:26:11.517","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","3011728","Week I-8 (1)","10","Date of Visit","33007990","0","14 Apr 2026 01:31:52:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 01:31:52.113","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","194311","JP100082002","6330","3063187","Week I-12 (1)","11","Date of Visit","33673833","0","13 May 2026 02:00:24:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 02:00:24.827","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","196944","JP100082003","6330","2964303","Screening","3","Date of Visit","32364748","0","19 May 2026 03:46:38:453","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 03:46:38.453","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","200375","JP100082004","6330","3036877","Screening","3","Date of Visit","33330749","0","01 Apr 2026 00:48:39:783","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 00:48:39.783","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","200375","JP100082004","6330","3060625","Week I-0 (1)","7","Date of Visit","33639574","0","11 Apr 2026 08:46:44:063","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260411 08:46:44.063","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","200375","JP100082004","6330","3060637","Week I-2 (1)","8","Date of Visit","33639970","0","25 Apr 2026 02:15:29:640","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260425 02:15:29.640","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","200375","JP100082004","6330","3096122","Week I-4 (1)","9","Date of Visit","34154644","0","09 May 2026 04:32:06:067","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260509 04:32:06.067","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3052658","Screening","3","Date of Visit","33541580","0","19 May 2026 04:43:31:230","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 04:43:31.230","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3086488","Week I-0 (1)","7","Date of Visit","34030552","0","19 May 2026 04:43:31:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 04:43:31.247","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3125444","Week I-2 (1)","8","Date of Visit","34523639","0","19 May 2026 04:43:31:260","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 04:43:31.260","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3138818","Week I-4 (1)","9","Date of Visit","34752349","0","19 May 2026 09:13:53:713","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 09:13:53.713","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","211008","JP100082006","6330","3197297","Screening","3","Date of Visit","35105462","0","15 May 2026 23:45:26:460","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","16 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 23:45:26.460","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2640943","Screening","3","Date of Visit","28390789","0","27 Oct 2025 06:04:17:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251027 06:04:17.347","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2702482","Week I-0 (1)","7","Date of Visit","29085973","0","17 Nov 2025 08:05:36:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251117 08:05:36.723","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2703752","Week I-2 (1)","8","Date of Visit","29099902","0","01 Dec 2025 07:43:44:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251201 07:43:44.597","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2781142","Week I-4 (1)","9","Date of Visit","29869022","0","15 Dec 2025 08:24:29:260","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251215 08:24:29.260","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2831487","Week I-8 (1)","10","Date of Visit","30578044","0","09 Jan 2026 06:28:47:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 06:28:47.187","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2869495","Week I-12 (1)","11","Date of Visit","31084918","0","10 Feb 2026 07:25:59:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 07:25:59.460","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2924806","Week M-4 (1)","15","Date of Visit","31792952","0","09 Mar 2026 03:53:22:387","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 03:53:22.387","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","2989336","Week M-8 (1)","16","Date of Visit","32701342","0","06 Apr 2026 04:19:06:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 04:19:06.583","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","182213","JP100102001","6330","3049119","Week M-12 (1)","17","Date of Visit","33497856","0","11 May 2026 01:21:32:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 01:21:32.527","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","185807","JP100102002","6330","2707421","Screening","3","Date of Visit","29140655","0","28 Nov 2025 01:01:55:127","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251128 01:01:55.127","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2810467","Screening","3","Date of Visit","30307509","0","12 Dec 2025 05:33:24:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251212 05:33:24.227","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2861301","Week I-0 (1)","7","Date of Visit","30981861","0","05 Jan 2026 06:41:49:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260105 06:41:49.767","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2861609","Week I-2 (1)","8","Date of Visit","30984945","0","19 Jan 2026 07:51:33:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 07:51:33.827","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2884335","Week I-4 (1)","9","Date of Visit","31265083","0","02 Feb 2026 03:38:43:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 03:38:43.977","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2907904","Week I-8 (1)","10","Date of Visit","31562886","0","02 Mar 2026 02:30:50:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 02:30:50.707","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","2964908","Week I-12 (1)","11","Date of Visit","32370047","0","19 May 2026 00:34:36:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 00:34:36.557","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","189717","JP100102003","6330","3082226","Week M-4 (1)","15","Date of Visit","33965891","0","11 May 2026 02:22:29:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 02:22:29.550","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2831050","Screening","3","Date of Visit","30571761","0","23 Dec 2025 05:57:33:847","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251223 05:57:33.847","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2861377","Week I-0 (1)","7","Date of Visit","30982775","0","05 Jan 2026 08:32:00:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260105 08:32:00.557","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2861775","Week I-2 (1)","8","Date of Visit","30987737","0","19 Jan 2026 07:54:30:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 07:54:30.647","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2884339","Week I-4 (1)","9","Date of Visit","31265116","0","16 Feb 2026 02:15:54:030","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 23JAN2026 > WORSENING OF ULCERATIVE COLITIS","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 02:15:54.030","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2913414","Induction Early Discontinuation (1)","12","Date of Visit","31635708","0","27 Feb 2026 06:05:55:270","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 06:05:55.270","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2938805","Induction Safety Follow Up (1)","13","Date of Visit","32005219","0","25 Mar 2026 02:50:37:457","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 02:50:37.457","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2834464","Screening","3","Date of Visit","30619260","0","23 Dec 2025 05:59:14:763","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251223 05:59:14.763","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2873864","Week I-0 (1)","7","Date of Visit","31135732","0","13 Jan 2026 05:33:44:003","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260113 05:33:44.003","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2874005","Week I-2 (1)","8","Date of Visit","31138136","0","26 Jan 2026 04:51:36:240","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260126 04:51:36.240","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2895927","Week I-4 (1)","9","Date of Visit","31413694","0","16 Feb 2026 00:57:31:433","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 00:57:31.433","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2938761","Week I-8 (1)","10","Date of Visit","32004925","0","10 Mar 2026 03:30:31:583","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 03:30:31.583","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","2995653","Week I-12 (1)","11","Date of Visit","32791941","0","13 May 2026 02:18:21:983","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 02:18:21.983","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190853","JP100102005","6330","3050875","Week M-4 (1)","15","Date of Visit","33517181","0","01 May 2026 02:34:33:940","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 02:34:33.940","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2880820","Screening","3","Date of Visit","31223981","0","02 Feb 2026 08:34:45:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 08:34:45.810","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2940146","Week I-0 (1)","7","Date of Visit","32027372","0","24 Feb 2026 06:39:52:063","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 06:39:52.063","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2952862","Week I-2 (1)","8","Date of Visit","32201980","0","03 Mar 2026 05:53:23:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 05:53:23.510","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2968469","Week I-4 (1)","9","Date of Visit","32409860","0","13 Mar 2026 06:17:49:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 06:17:49.647","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","3005631","Week I-8 (1)","10","Date of Visit","32927767","0","11 May 2026 02:36:10:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 02:36:10.287","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","3169034","Week I-12 (1)","11","Date of Visit","34841395","0","18 May 2026 02:43:50:917","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 02:43:50.917","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","194357","JP100102007","6330","2910742","Screening","3","Date of Visit","31595819","0","10 Mar 2026 05:53:11:383","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 05:53:11.383","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","2925075","Screening","3","Date of Visit","31797245","0","20 Feb 2026 05:57:30:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260220 05:57:30.607","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","2964310","Week I-0 (1)","7","Date of Visit","32364942","0","02 Mar 2026 02:31:54:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 02:31:54.387","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","2964909","Week I-2 (1)","8","Date of Visit","32370070","0","14 Mar 2026 01:29:31:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260314 01:29:31.477","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","3007830","Week I-4 (1)","9","Date of Visit","32956578","0","30 Mar 2026 04:45:16:683","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 04:45:16.683","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","195023","JP100102008","6330","3039500","Week I-8 (1)","10","Date of Visit","33367323","0","30 Apr 2026 01:39:56:997","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 01:39:56.997","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2825795","Screening","3","Date of Visit","30505846","0","22 Dec 2025 02:15:58:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251222 02:15:58.640","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2886362","Week I-0 (1)","7","Date of Visit","31288248","0","21 Jan 2026 06:30:10:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 06:30:10.207","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2889605","Week I-2 (1)","8","Date of Visit","31327514","0","06 Feb 2026 05:10:13:170","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 05:10:13.170","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2919129","Week I-4 (1)","9","Date of Visit","31714595","0","19 Feb 2026 01:00:58:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 01:00:58.223","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","2945364","Week I-8 (1)","10","Date of Visit","32096738","0","18 Mar 2026 03:40:40:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 03:40:40.280","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","3015072","Week I-12 (1)","11","Date of Visit","33052593","0","21 Apr 2026 01:53:34:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 01:53:34.897","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","190427","JP100122001","6330","3078946","Week M-4 (1)","15","Date of Visit","33916352","0","18 May 2026 00:53:15:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 00:53:15.577","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2867204","Screening","3","Date of Visit","31056258","0","20 Jan 2026 08:15:52:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 08:15:52.743","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2915743","Week I-0 (1)","7","Date of Visit","31662882","0","06 Feb 2026 05:26:06:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 05:26:06.537","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2919150","Week I-2 (1)","8","Date of Visit","31714950","0","24 Feb 2026 01:29:28:713","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 01:29:28.713","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2952412","Week I-4 (1)","9","Date of Visit","32194751","0","07 Mar 2026 00:47:46:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260307 00:47:46.227","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","2988643","Week I-8 (1)","10","Date of Visit","32694732","0","06 Apr 2026 02:57:40:410","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 02:57:40.410","","" +"JPN","9174","DD5-JP10012","Sai Gastroenterology Proctology","192339","JP100122002","6330","3049076","Week I-12 (1)","11","Date of Visit","33497443","0","01 May 2026 01:29:57:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 01:29:57.973","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2621669","Screening","3","Date of Visit","28180731","0","10 Nov 2025 02:51:33:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251110 02:51:33.223","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2724998","Week I-0 (1)","7","Date of Visit","29371824","0","03 Dec 2025 06:04:51:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251203 06:04:51.770","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2788952","Week I-2 (1)","8","Date of Visit","29993534","0","05 Dec 2025 06:11:40:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251205 06:11:40.447","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2803140","Week I-4 (1)","9","Date of Visit","30213457","0","19 Dec 2025 06:37:12:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251219 06:37:12.683","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2844420","Week I-8 (1)","10","Date of Visit","30739264","0","16 Jan 2026 01:33:38:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260116 01:33:38.563","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2880678","Week I-12 (1)","11","Date of Visit","31222302","0","13 Feb 2026 06:50:01:623","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 06:50:01.623","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","2934783","Week M-4 (1)","15","Date of Visit","31942196","0","13 Mar 2026 05:41:03:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 05:41:03.720","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","3005548","Week M-8 (1)","16","Date of Visit","32926525","0","09 Apr 2026 03:28:08:633","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 03:28:08.633","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","181106","JP100132001","6330","3055864","Week M-12 (1)","17","Date of Visit","33581682","0","07 May 2026 05:13:18:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 05:13:18.177","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","183886","JP100132002","6330","2672753","Screening","3","Date of Visit","28726728","0","08 Dec 2025 01:10:36:290","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251208 01:10:36.290","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","184175","JP100132003","6330","2679544","Screening","3","Date of Visit","28806063","0","28 Nov 2025 05:18:45:173","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","07 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251128 05:18:45.173","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2867320","Screening","3","Date of Visit","31058317","0","08 Jan 2026 07:59:54:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260108 07:59:54.657","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2915990","Week I-0 (1)","7","Date of Visit","31665542","0","06 Feb 2026 02:03:40:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 02:03:40.323","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2918901","Week I-2 (1)","8","Date of Visit","31710142","0","19 Feb 2026 06:07:03:040","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 06:07:03.040","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2945628","Week I-4 (1)","9","Date of Visit","32099100","0","05 Mar 2026 04:28:07:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 04:28:07.717","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","2978091","Week I-8 (1)","10","Date of Visit","32543060","0","02 Apr 2026 06:41:37:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 06:41:37.323","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","3046415","Week I-12 (1)","11","Date of Visit","33462963","0","25 May 2026 05:40:28:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 05:40:28.567","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","192343","JP100151001","6330","3210890","Week M-4 (1)","15","Date of Visit","35287268","0","25 May 2026 05:49:33:913","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 05:49:33.913","","" +"JPN","9094","DD5-JP10015","Kobe University Hospital","210802","JP100151002","6330","3192802","Screening","3","Date of Visit","35035253","0","14 May 2026 01:20:29:660","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 01:20:29.660","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","2876486","Screening","3","Date of Visit","31169351","0","01 May 2026 08:44:42:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 08:44:42.323","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","2901587","Week I-0 (1)","7","Date of Visit","31483971","0","02 Feb 2026 00:57:47:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 00:57:47.570","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","2907794","Week I-2 (1)","8","Date of Visit","31561380","0","13 Mar 2026 02:33:45:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 02:33:45.053","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","3005398","Week I-4 (1)","9","Date of Visit","32924613","0","13 Mar 2026 02:34:17:590","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 02:34:17.590","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","3005399","Week I-8 (1)","10","Date of Visit","32924632","0","25 Mar 2026 01:44:51:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 01:44:51.710","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","192755","JP100162001","6330","3030679","Week I-12 (1)","11","Date of Visit","33249291","0","30 Apr 2026 00:29:21:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 00:29:21.277","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","201724","JP100162002","6330","3063257","Screening","3","Date of Visit","33675011","0","16 Apr 2026 07:00:49:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 07:00:49.597","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","201724","JP100162002","6330","3128630","Week I-0 (1)","7","Date of Visit","34578098","0","05 May 2026 06:22:40:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 06:22:40.437","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","201724","JP100162002","6330","3128892","Week I-2 (1)","8","Date of Visit","34582355","0","19 May 2026 07:17:56:147","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 07:17:56.147","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","202159","JP100162003","6330","3072446","Screening","3","Date of Visit","33818200","0","19 May 2026 02:21:35:890","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 02:21:35.890","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","202159","JP100162003","6330","3132691","Week I-0 (1)","7","Date of Visit","34642475","0","06 May 2026 08:29:38:567","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 08:29:38.567","","" +"JPN","9092","DD5-JP10016","Sapporo Tokushukai Hospital","202159","JP100162003","6330","3133605","Week I-2 (1)","8","Date of Visit","34663425","0","19 May 2026 07:18:17:800","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 07:18:17.800","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","192340","JP100182001","6330","2867224","Screening","3","Date of Visit","31056460","0","09 Feb 2026 05:47:19:763","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 05:47:19.763","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","193223","JP100182002","6330","2886388","Screening","3","Date of Visit","31288540","0","05 Feb 2026 01:55:12:700","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 01:55:12.700","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","2924384","Screening","3","Date of Visit","31785951","0","06 Apr 2026 01:57:59:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 01:57:59.577","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","2995591","Week I-0 (1)","7","Date of Visit","32791145","0","17 Mar 2026 07:10:08:827","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 07:10:08.827","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","3011699","Week I-2 (1)","8","Date of Visit","33007480","0","31 Mar 2026 04:03:23:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 04:03:23.397","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","3041667","Week I-4 (1)","9","Date of Visit","33394480","0","14 Apr 2026 02:36:26:577","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 02:36:26.577","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","194991","JP100182003","6330","3063222","Week I-8 (1)","10","Date of Visit","33674485","0","02 May 2026 02:59:35:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260502 02:59:35.200","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","202356","JP100182004","6330","3076175","Screening","3","Date of Visit","33869731","0","28 Apr 2026 04:23:31:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 04:23:31.393","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2830725","Screening","3","Date of Visit","30567557","0","16 Dec 2025 02:06:57:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251216 02:06:57.830","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2864990","Week I-0 (1)","7","Date of Visit","31028461","0","07 Jan 2026 01:51:00:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260107 01:51:00.223","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2865027","Week I-2 (1)","8","Date of Visit","31029027","0","21 Jan 2026 02:02:43:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 02:02:43.853","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2889383","Week I-4 (1)","9","Date of Visit","31325136","0","04 Feb 2026 07:12:02:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 07:12:02.983","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2913480","Week I-8 (1)","10","Date of Visit","31636508","0","02 Apr 2026 02:07:35:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 02:07:35.400","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","3046027","Week I-12 (1)","11","Date of Visit","33456569","0","02 Apr 2026 02:08:42:963","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 02:08:42.963","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","3046029","Week M-4 (1)","15","Date of Visit","33456595","0","01 May 2026 05:16:34:360","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 05:16:34.360","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","3125482","Maintenance Early Discontinuation (1)","27","Date of Visit","34524323","0","01 May 2026 05:21:04:073","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 05:21:04.073","","" +"JPN","9113","DD5-JP10021","Takagi Clinic","199104","JP100212001","6330","3011114","Screening","3","Date of Visit","32999595","0","17 Mar 2026 06:45:52:257","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 06:45:52.257","","" +"JPN","9113","DD5-JP10021","Takagi Clinic","211542","JP100212002","6330","3208008","Screening","3","Date of Visit","35249353","0","22 May 2026 07:56:24:953","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:56:24.953","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","182603","JP100222001","6330","2648919","Screening","3","Date of Visit","28474098","0","12 Dec 2025 06:58:15:207","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251212 06:58:15.207","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","199103","JP100222002","6330","3011092","Screening","3","Date of Visit","32999211","0","19 Mar 2026 01:41:48:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 01:41:48.657","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","199103","JP100222002","6330","3090021","Week I-0 (1)","7","Date of Visit","34088442","0","24 Apr 2026 10:56:29:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 10:56:29.850","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","199103","JP100222002","6330","3092412","Week I-2 (1)","8","Date of Visit","34112180","0","22 May 2026 07:17:30:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:17:30.093","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","199103","JP100222002","6330","3208688","Week I-4 (1)","9","Date of Visit","35259553","0","22 May 2026 07:18:01:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:18:01.770","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","2897533","Screening","3","Date of Visit","31433375","0","09 Feb 2026 02:18:00:253","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 02:18:00.253","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","2952435","Week I-0 (1)","7","Date of Visit","32195258","0","24 Feb 2026 04:42:07:997","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 04:42:07.997","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","2952560","Week I-2 (1)","8","Date of Visit","32197508","0","10 Mar 2026 03:24:23:237","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 03:24:23.237","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","2995627","Week I-4 (1)","9","Date of Visit","32791604","0","24 Mar 2026 06:48:34:283","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 06:48:34.283","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","3027391","Week I-8 (1)","10","Date of Visit","33206473","0","21 Apr 2026 02:43:54:860","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 02:43:54.860","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","193756","JP100242001","6330","3078991","Week I-12 (1)","11","Date of Visit","33917021","0","21 May 2026 05:51:13:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 05:51:13.303","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","198858","JP100242002","6330","3005642","Screening","3","Date of Visit","32927835","0","14 Apr 2026 06:20:38:503","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 06:20:38.503","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","198858","JP100242002","6330","3063203","Week I-0 (1)","7","Date of Visit","33674216","0","14 Apr 2026 06:20:38:520","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 06:20:38.520","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","198858","JP100242002","6330","3063619","Week I-2 (1)","8","Date of Visit","33679463","0","28 Apr 2026 05:44:04:250","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 05:44:04.250","","" +"JPN","9093","DD5-JP10024","Ginza central clinic","198858","JP100242002","6330","3113394","Week I-4 (1)","9","Date of Visit","34339530","0","14 May 2026 05:31:35:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 05:31:35.880","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2590031","Screening","3","Date of Visit","27797552","0","04 Nov 2025 05:18:08:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251104 05:18:08.707","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2642530","Week I-0 (1)","7","Date of Visit","28405159","0","04 Nov 2025 05:44:04:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251104 05:44:04.483","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2664033","Week I-2 (1)","8","Date of Visit","28633248","0","07 Nov 2025 08:38:42:840","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251107 08:38:42.840","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2680154","Week I-4 (1)","9","Date of Visit","28813807","0","21 Nov 2025 08:45:28:643","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251121 08:45:28.643","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2725763","Week I-8 (1)","10","Date of Visit","29380575","0","19 Dec 2025 09:04:54:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251219 09:04:54.400","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2844918","Week I-12 (1)","11","Date of Visit","30745237","0","16 Jan 2026 02:38:05:753","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260116 02:38:05.753","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2880710","Week M-4 (1)","15","Date of Visit","31222861","0","13 Feb 2026 08:07:49:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 08:07:49.857","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","2935473","Week M-8 (1)","16","Date of Visit","31953093","0","16 Mar 2026 03:45:45:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 03:45:45.660","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","3008507","Week M-12 (1)","17","Date of Visit","32964519","0","13 Apr 2026 01:08:30:457","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 01:08:30.457","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","179548","JP100261001","6330","3061032","Week M-16 (1)","18","Date of Visit","33643841","0","07 May 2026 07:23:52:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 07:23:52.870","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2601306","Screening","3","Date of Visit","27952188","0","21 Nov 2025 02:58:30:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251121 02:58:30.123","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2717934","Week I-0 (1)","7","Date of Visit","29248109","0","21 Nov 2025 03:24:34:220","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251121 03:24:34.220","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2724894","Week I-2 (1)","8","Date of Visit","29370582","0","05 Dec 2025 05:18:01:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251205 05:18:01.247","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2803081","Week I-4 (1)","9","Date of Visit","30212839","0","19 Dec 2025 09:08:31:103","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251219 09:08:31.103","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2844939","Week I-8 (1)","10","Date of Visit","30745414","0","16 Jan 2026 01:56:30:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260116 01:56:30.707","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2869325","Week I-12 (1)","11","Date of Visit","31222466","0","16 Feb 2026 04:24:02:690","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 04:24:02.690","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","2938835","Week M-4 (1)","15","Date of Visit","32005795","0","16 Mar 2026 03:27:23:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 03:27:23.247","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","3008499","Week M-8 (1)","16","Date of Visit","32964395","0","15 Apr 2026 06:02:55:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 06:02:55.497","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","180105","JP100261002","6330","3066449","Week M-12 (1)","17","Date of Visit","33716538","0","07 May 2026 07:02:49:273","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 07:02:49.273","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2783312","Screening","3","Date of Visit","29899042","0","22 Jan 2026 03:41:15:887","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 03:41:15.887","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2863164","Week I-0 (1)","7","Date of Visit","31005989","0","22 Jan 2026 03:41:15:910","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 03:41:15.910","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2869326","Week I-2 (1)","8","Date of Visit","31082964","0","22 Jan 2026 06:48:27:143","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 06:48:27.143","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2892076","Week I-4 (1)","9","Date of Visit","31359937","0","05 Feb 2026 08:58:32:703","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 08:58:32.703","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2916537","Week I-8 (1)","10","Date of Visit","31672747","0","27 Feb 2026 12:06:30:753","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 12:06:30.753","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","2963351","Week I-12 (1)","11","Date of Visit","32356165","0","03 Apr 2026 11:14:17:877","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 11:14:17.877","","" +"JPN","9206","DD5-JP10026","Japanese Red Cross Kumamoto Hospital","188284","JP100262001","6330","3048285","Week M-4 (1)","15","Date of Visit","33487971","0","01 May 2026 07:48:50:263","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 07:48:50.263","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","2975461","Screening","3","Date of Visit","32510513","0","11 Mar 2026 08:47:30:833","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 08:47:30.833","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","3015059","Week I-0 (1)","7","Date of Visit","33052488","0","18 Mar 2026 09:50:42:327","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 09:50:42.327","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","3016050","Week I-2 (1)","8","Date of Visit","33065991","0","31 Mar 2026 07:03:25:157","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 07:03:25.157","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","3041958","Week I-4 (1)","9","Date of Visit","33397687","0","14 Apr 2026 08:53:22:103","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 08:53:22.103","","" +"JPN","9178","DD5-JP10028","Kumamoto University Hospital","197477","JP100282001","6330","3064332","Week I-8 (1)","10","Date of Visit","33688894","0","11 May 2026 07:49:20:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 07:49:20.317","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2624250","Screening","3","Date of Visit","28207343","0","05 Nov 2025 08:20:49:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251105 08:20:49.973","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2682950","Week I-0 (1)","7","Date of Visit","28847299","0","08 Nov 2025 05:23:28:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251108 05:23:28.957","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2682993","Week I-2 (1)","8","Date of Visit","28847640","0","25 Nov 2025 05:23:07:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251125 05:23:07.397","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2757179","Week I-4 (1)","9","Date of Visit","29551552","0","06 Dec 2025 03:27:11:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251206 03:27:11.550","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2806904","Week I-8 (1)","10","Date of Visit","30264046","0","19 Jan 2026 05:20:55:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 05:20:55.543","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2883736","Week I-12 (1)","11","Date of Visit","31256124","0","02 Feb 2026 07:09:48:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 07:09:48.133","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2908097","Week M-4 (1)","15","Date of Visit","31565272","0","02 Mar 2026 02:28:06:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 02:28:06.237","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","2964907","Week M-8 (1)","16","Date of Visit","32370023","0","30 Mar 2026 04:11:51:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 04:11:51.150","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","3039492","Week M-12 (1)","17","Date of Visit","33367096","0","22 Apr 2026 05:40:15:137","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 05:40:15.137","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","181258","JP100292001","6330","3082608","Week M-16 (1)","18","Date of Visit","33970487","0","25 May 2026 03:25:23:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 03:25:23.053","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2762738","Screening","3","Date of Visit","29633487","0","22 Dec 2025 23:28:21:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251222 23:28:21.727","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2847431","Week I-0 (1)","7","Date of Visit","30784696","0","22 Dec 2025 23:56:09:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251222 23:56:09.587","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2849908","Week I-2 (1)","8","Date of Visit","30820443","0","07 Jan 2026 05:53:18:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260107 05:53:18.700","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2865241","Week I-4 (1)","9","Date of Visit","31031496","0","21 Jan 2026 06:51:25:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 06:51:25.310","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2889621","Week I-8 (1)","10","Date of Visit","31327809","0","16 Feb 2026 07:34:12:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 07:34:12.350","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","2938953","Week I-12 (1)","11","Date of Visit","32007827","0","19 Mar 2026 08:39:32:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 08:39:32.483","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","3018561","Week M-4 (1)","15","Date of Visit","33097724","0","17 Apr 2026 04:09:07:097","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 04:09:07.097","","" +"JPN","9138","DD5-JP10029","Matsuda Hospital","187330","JP100292002","6330","3072564","Week M-8 (1)","16","Date of Visit","33819026","0","11 May 2026 03:37:55:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 03:37:55.887","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2783347","Screening","3","Date of Visit","29899305","0","10 Dec 2025 10:04:07:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251210 10:04:07.280","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2852169","Week I-0 (1)","7","Date of Visit","30856376","0","30 Dec 2025 05:44:59:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251230 05:44:59.050","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2857795","Week I-2 (1)","8","Date of Visit","30938960","0","09 Jan 2026 07:03:06:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 07:03:06.347","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2869609","Week I-4 (1)","9","Date of Visit","31086054","0","27 Jan 2026 00:27:25:503","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260127 00:27:25.503","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2897393","Week I-8 (1)","10","Date of Visit","31431897","0","20 Feb 2026 02:46:23:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260220 02:46:23.453","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","2947856","Week I-12 (1)","11","Date of Visit","32130748","0","19 Mar 2026 02:36:08:823","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 02:36:08.823","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","3017886","Week M-4 (1)","15","Date of Visit","33089816","0","15 Apr 2026 05:01:53:847","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 05:01:53.847","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","188289","JP100312001","6330","3066324","Week M-8 (1)","16","Date of Visit","33715098","0","13 May 2026 03:27:51:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 03:27:51.310","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","197731","JP100312002","6330","2980995","Screening","3","Date of Visit","32580099","0","12 Mar 2026 06:16:40:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 06:16:40.137","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","197731","JP100312002","6330","3044027","Week I-0 (1)","7","Date of Visit","33425557","0","01 Apr 2026 04:55:39:290","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 04:55:39.290","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","197731","JP100312002","6330","3044247","Week I-2 (1)","8","Date of Visit","33430009","0","27 Apr 2026 06:27:23:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 06:27:23.507","","" +"JPN","9208","DD5-JP10031","National Hospital Organization Hirosaki National Hospital","197731","JP100312002","6330","3110898","Week I-4 (1)","9","Date of Visit","34307326","0","30 Apr 2026 07:40:04:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:40:04.843","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2683827","Screening","3","Date of Visit","28854990","0","11 Nov 2025 05:30:04:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251111 05:30:04.150","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2817971","Week I-0 (1)","7","Date of Visit","30406155","0","11 Dec 2025 06:30:07:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251211 06:30:07.950","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2825955","Week I-2 (1)","8","Date of Visit","30508163","0","25 Dec 2025 04:36:54:457","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251225 04:36:54.457","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2854558","Week I-4 (1)","9","Date of Visit","30897590","0","14 Jan 2026 02:30:28:500","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260114 02:30:28.500","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2876395","Week I-8 (1)","10","Date of Visit","31167946","0","18 Feb 2026 02:27:21:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260218 02:27:21.033","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2943014","Week I-12 (1)","11","Date of Visit","32065499","0","03 Mar 2026 23:15:19:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 23:15:19.303","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","2975326","Week M-4 (1)","15","Date of Visit","32509126","0","02 Apr 2026 07:27:06:480","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 07:27:06.480","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","184375","JP100322001","6330","3046620","Week M-8 (1)","16","Date of Visit","33465630","0","07 May 2026 02:38:14:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 02:38:14.353","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2707537","Screening","3","Date of Visit","29142098","0","05 Dec 2025 00:37:35:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251205 00:37:35.697","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2850019","Week I-0 (1)","7","Date of Visit","30822333","0","26 Dec 2025 07:12:38:410","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251226 07:12:38.410","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2855155","Week I-2 (1)","8","Date of Visit","30904896","0","14 Jan 2026 02:20:42:903","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260114 02:20:42.903","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2876385","Week I-4 (1)","9","Date of Visit","31167796","0","23 Jan 2026 00:38:10:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 00:38:10.553","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2893879","Week I-8 (1)","10","Date of Visit","31384076","0","19 Feb 2026 02:38:41:273","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 02:38:41.273","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","2945398","Week I-12 (1)","11","Date of Visit","32097211","0","02 Apr 2026 09:13:13:483","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 09:13:13.483","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","3046814","Week M-4 (1)","15","Date of Visit","33469090","0","11 May 2026 05:48:14:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 05:48:14.093","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","185815","JP100322002","6330","3172271","Week M-8 (1)","16","Date of Visit","34854546","0","20 May 2026 07:29:48:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 07:29:48.940","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2841680","Screening","3","Date of Visit","30706887","0","09 Jan 2026 01:48:08:213","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 01:48:08.213","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2865061","Week I-0 (1)","7","Date of Visit","31029327","0","13 Jan 2026 05:13:40:593","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260113 05:13:40.593","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2873993","Week I-2 (1)","8","Date of Visit","31137915","0","23 Jan 2026 01:21:53:873","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 01:21:53.873","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2893898","Week I-4 (1)","9","Date of Visit","31384321","0","18 Feb 2026 02:32:04:213","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260218 02:32:04.213","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2943015","Week I-8 (1)","10","Date of Visit","32065520","0","04 Mar 2026 00:47:47:200","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 00:47:47.200","","" +"JPN","9071","DD5-JP10032","National Hospital Organization Mito Medical Center","191204","JP100322003","6330","2975377","Week I-12 (1)","11","Date of Visit","32509689","0","31 Mar 2026 03:17:57:297","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 03:17:57.297","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2830999","Screening","3","Date of Visit","30571261","0","24 Dec 2025 00:35:46:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251224 00:35:46.043","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2883610","Week I-0 (1)","7","Date of Visit","31254750","0","20 Jan 2026 04:52:56:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 04:52:56.580","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2886573","Week I-2 (1)","8","Date of Visit","31291118","0","05 Feb 2026 00:45:24:590","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 00:45:24.590","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2915688","Week I-4 (1)","9","Date of Visit","31661921","0","19 Feb 2026 03:39:59:383","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 03:39:59.383","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","2945414","Week I-8 (1)","10","Date of Visit","32097479","0","19 Mar 2026 08:41:44:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 08:41:44.460","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","3018569","Week I-12 (1)","11","Date of Visit","33097871","0","14 Apr 2026 09:02:11:193","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 09:02:11.193","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","190650","JP100342001","6330","3064400","Week M-4 (1)","15","Date of Visit","33689757","0","12 May 2026 07:56:17:200","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 07:56:17.200","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","201881","JP100342002","6330","3066736","Screening","3","Date of Visit","33721108","0","22 May 2026 07:36:48:160","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:36:48.160","","" +"JPN","9958","DD5-JP10034","Fukui Prefectural Hospital","201881","JP100342002","6330","3189600","Week I-0 (1)","7","Date of Visit","34991094","0","15 May 2026 09:00:38:473","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 09:00:38.473","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2687156","Screening","3","Date of Visit","28894867","0","01 Dec 2025 07:06:17:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251201 07:06:17.223","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2813889","Week I-0 (1)","7","Date of Visit","30350790","0","09 Dec 2025 08:12:04:063","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251209 08:12:04.063","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2814799","Week I-2 (1)","8","Date of Visit","30360180","0","25 Dec 2025 05:16:10:283","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251225 05:16:10.283","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2854593","Week I-4 (1)","9","Date of Visit","30897897","0","28 Jan 2026 03:58:23:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 03:58:23.983","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2899596","Week I-8 (1)","10","Date of Visit","31460225","0","06 Feb 2026 08:34:08:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 08:34:08.880","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2919736","Week I-12 (1)","11","Date of Visit","31722978","0","04 Mar 2026 08:32:09:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 08:32:09.683","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","2976087","Week M-4 (1)","15","Date of Visit","32518205","0","10 Apr 2026 05:18:27:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 05:18:27.817","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","184558","JP100372001","6330","3058768","Week M-8 (1)","16","Date of Visit","33619284","0","15 May 2026 00:09:14:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 00:09:14.030","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","2930584","Screening","3","Date of Visit","31874376","0","04 Mar 2026 09:42:26:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 09:42:26.593","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","2995605","Week I-0 (1)","7","Date of Visit","32791357","0","24 Mar 2026 09:14:01:533","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 09:14:01.533","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","3027930","Week I-2 (1)","8","Date of Visit","33213431","0","24 Mar 2026 10:22:12:233","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 10:22:12.233","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","3028813","Week I-4 (1)","9","Date of Visit","33224173","0","10 Apr 2026 06:25:42:473","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 06:25:42.473","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","195266","JP100372002","6330","3058844","Week I-8 (1)","10","Date of Visit","33620152","0","15 May 2026 00:14:19:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 00:14:19.160","","" +"JPN","9095","DD5-JP10037","Oita Red Cross Hospital","202501","JP100372003","6330","3078915","Screening","3","Date of Visit","33915705","0","21 Apr 2026 01:18:17:527","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 01:18:17.527","","" +"JPN","9140","DD5-JP10043","Kyorin University Hospital","194460","JP100432001","6330","2913084","Screening","3","Date of Visit","31632167","0","10 Feb 2026 10:04:12:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 10:04:12.773","","" +"JPN","9140","DD5-JP10043","Kyorin University Hospital","194460","JP100432001","6330","2975467","Week I-0 (1)","7","Date of Visit","32510639","0","04 Mar 2026 07:36:44:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 07:36:44.833","","" +"JPN","9140","DD5-JP10043","Kyorin University Hospital","194460","JP100432001","6330","2975949","Week I-2 (1)","8","Date of Visit","32516330","0","18 Mar 2026 02:38:49:223","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 02:38:49.223","","" +"JPN","9140","DD5-JP10043","Kyorin University Hospital","194460","JP100432001","6330","3015007","Week I-4 (1)","9","Date of Visit","33051977","0","06 Apr 2026 07:13:47:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 07:13:47.530","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2861275","Screening","3","Date of Visit","30981452","0","08 Jan 2026 08:40:34:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260108 08:40:34.660","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2921742","Week I-0 (1)","7","Date of Visit","31747009","0","09 Feb 2026 06:51:13:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 06:51:13.973","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2921969","Week I-2 (1)","8","Date of Visit","31750931","0","25 Feb 2026 03:21:55:763","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 03:21:55.763","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2956251","Week I-4 (1)","9","Date of Visit","32258576","0","09 Mar 2026 06:17:21:403","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 06:17:21.403","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","2989436","Week I-8 (1)","10","Date of Visit","32702850","0","03 Apr 2026 05:51:57:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 05:51:57.230","","" +"JPN","9235","DD5-JP10046","National Hospital Organization Kanazawa Medical Center","192054","JP100462001","6330","3047898","Week I-12 (1)","11","Date of Visit","33483325","0","01 May 2026 06:19:50:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 06:19:50.070","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2783566","Screening","3","Date of Visit","29901009","0","30 Apr 2026 05:05:44:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 05:05:44.597","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2863179","Week I-0 (1)","7","Date of Visit","31006231","0","06 Jan 2026 05:09:18:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260106 05:09:18.790","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2863360","Week I-2 (1)","8","Date of Visit","31008452","0","20 Jan 2026 09:23:11:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 09:23:11.000","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2887319","Week I-4 (1)","9","Date of Visit","31300376","0","04 Feb 2026 01:44:01:540","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 01:44:01.540","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2913122","Week I-8 (1)","10","Date of Visit","31632850","0","03 Mar 2026 07:06:14:793","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 07:06:14.793","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2968671","Week I-12 (1)","11","Date of Visit","32412751","0","13 May 2026 05:36:21:673","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 05:36:21.673","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2865167","Screening","3","Date of Visit","31030679","0","07 Apr 2026 02:30:45:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 02:30:45.987","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2913091","Week I-0 (1)","7","Date of Visit","31632386","0","05 Feb 2026 01:03:38:800","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 01:03:38.800","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2915707","Week I-2 (1)","8","Date of Visit","31662181","0","19 Feb 2026 05:57:27:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 05:57:27.853","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2945616","Week I-4 (1)","9","Date of Visit","32099020","0","06 Mar 2026 02:27:52:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 02:27:52.760","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","2980957","Week I-8 (1)","10","Date of Visit","32579438","0","01 Apr 2026 02:41:22:230","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 02:41:22.230","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","3044142","Week I-12 (1)","11","Date of Visit","33428945","0","27 Apr 2026 23:20:33:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 23:20:33.607","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","192242","JP100482002","6330","3063643","Week M-4 (1)","15","Date of Visit","34335031","0","25 May 2026 09:25:05:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 09:25:05.737","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","205131","JP100491001","6330","3138637","Screening","3","Date of Visit","34749797","0","20 May 2026 16:48:53:443","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 16:48:53.443","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","2873861","Screening","3","Date of Visit","31135599","0","03 Feb 2026 02:10:00:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 02:10:00.677","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","2940151","Week I-0 (1)","7","Date of Visit","32027462","0","20 Feb 2026 07:38:56:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260220 07:38:56.267","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","2948310","Week I-2 (1)","8","Date of Visit","32136461","0","16 Mar 2026 01:53:55:003","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 01:53:55.003","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","3008358","Week I-4 (1)","9","Date of Visit","32963209","0","19 Mar 2026 02:55:26:883","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 02:55:26.883","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","3017908","Week I-8 (1)","10","Date of Visit","33090080","0","15 Apr 2026 04:28:29:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 04:28:29.783","","" +"JPN","9184","DD5-JP10049","Kanazawa University Hospital","192647","JP100492001","6330","3066282","Week I-12 (1)","11","Date of Visit","33714359","0","15 May 2026 06:23:30:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 06:23:30.870","","" +"JPN","9959","DD5-JP10050","Hospital of the University of Occupational and Enviromental Health","210952","JP100502001","6330","3196109","Screening","3","Date of Visit","35085162","0","22 May 2026 06:02:37:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 06:02:37.307","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","2913405","Screening","3","Date of Visit","31635561","0","02 Mar 2026 02:56:36:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 02:56:36.877","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","2943413","Week I-0 (1)","7","Date of Visit","32069936","0","09 Mar 2026 08:07:44:063","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 08:07:44.063","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","2989700","Week I-2 (1)","8","Date of Visit","32706276","0","13 Mar 2026 00:44:08:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 00:44:08.077","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","3005342","Week I-4 (1)","9","Date of Visit","32923812","0","14 Apr 2026 01:40:44:200","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 01:40:44.200","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","3063189","Week I-8 (1)","10","Date of Visit","33673927","0","15 Apr 2026 03:40:13:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 03:40:13.867","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","194477","JP100512001","6330","3066234","Week I-12 (1)","11","Date of Visit","33713763","0","20 May 2026 09:00:23:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 09:00:23.647","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","2953374","Screening","3","Date of Visit","32210113","0","15 Apr 2026 05:42:11:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 05:42:11.647","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","3047828","Week I-0 (1)","7","Date of Visit","33482058","0","15 Apr 2026 06:03:05:380","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 06:03:05.380","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","3066450","Week I-2 (1)","8","Date of Visit","33716554","0","19 May 2026 05:42:55:373","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 05:42:55.373","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","3200259","Week I-4 (1)","9","Date of Visit","35145585","0","19 May 2026 05:48:10:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 05:48:10.320","","" +"JPN","9142","DD5-JP10051","Kurume University Hospital","196422","JP100512002","6330","3200261","Week I-8 (1)","10","Date of Visit","35145695","0","19 May 2026 05:52:24:033","Tier 1","SDVTier","No","Did this visit occur?","","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 05:52:24.033","","" +"JPN","9143","DD5-JP10052","Saiseikai Fukuoka General Hospital","202349","JP100522001","6330","3076025","Screening","3","Date of Visit","33867650","0","20 Apr 2026 05:24:34:043","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 05:24:34.043","","" +"JPN","9143","DD5-JP10052","Saiseikai Fukuoka General Hospital","210803","JP100522002","6330","3192811","Screening","3","Date of Visit","35035347","0","18 May 2026 06:34:17:157","Tier 1","SDVTier","Yes","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 06:34:17.157","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198036","JP100532001","6330","2988740","Screening","3","Date of Visit","32695309","0","26 Mar 2026 02:46:06:400","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 02:46:06.400","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198533","JP100532002","6330","2999043","Screening","3","Date of Visit","32838537","0","15 Apr 2026 02:23:10:767","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 02:23:10.767","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198533","JP100532002","6330","3047873","Unscheduled 20260403","59","Date of Visit","33482962","0","03 Apr 2026 04:59:39:110","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","03 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","THE PLATELET COUNT IN THE SCREENING TEST RESULTS REQUIRES RETESTING DUE TO BLOOD CLOTTING.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 04:59:39.110","","" +"JPN","9073","DD5-JP10053","Takano Hospital","200055","JP100532003","6330","3030620","Screening","3","Date of Visit","33248483","0","25 Mar 2026 05:34:58:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 05:34:58.810","","" +"JPN","9073","DD5-JP10053","Takano Hospital","200055","JP100532003","6330","3058682","Week I-0 (1)","7","Date of Visit","33618386","0","10 Apr 2026 06:51:39:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 06:51:39.660","","" +"JPN","9073","DD5-JP10053","Takano Hospital","200055","JP100532003","6330","3058969","Week I-2 (1)","8","Date of Visit","33621302","0","24 Apr 2026 06:41:42:443","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 06:41:42.443","","" +"JPN","9073","DD5-JP10053","Takano Hospital","200055","JP100532003","6330","3090332","Week I-4 (1)","9","Date of Visit","34092373","0","08 May 2026 04:10:43:270","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 04:10:43.270","","" +"JPN","9073","DD5-JP10053","Takano Hospital","210930","JP100532004","6330","3195544","Screening","3","Date of Visit","35077566","0","15 May 2026 04:02:26:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 04:02:26.543","","" +"JPN","9073","DD5-JP10053","Takano Hospital","211022","JP100532005","6330","3197675","Screening","3","Date of Visit","35109322","0","22 May 2026 04:20:10:613","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 04:20:10.613","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","2901518","Screening","3","Date of Visit","31482865","0","29 Jan 2026 01:06:52:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 01:06:52.763","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","2968244","Week I-0 (1)","7","Date of Visit","32407673","0","03 Mar 2026 07:08:40:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 07:08:40.693","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","2968675","Week I-2 (1)","8","Date of Visit","32412831","0","17 Mar 2026 02:42:34:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 02:42:34.417","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","3011188","Week I-4 (1)","9","Date of Visit","33000970","0","31 Mar 2026 01:50:35:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 01:50:35.817","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","193926","KR100012001","6330","3041603","Week I-8 (1)","10","Date of Visit","33393817","0","30 Apr 2026 04:28:27:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 04:28:27.217","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","2915914","Screening","3","Date of Visit","31664230","0","05 Feb 2026 06:26:35:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 06:26:35.597","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","2978094","Week I-0 (1)","7","Date of Visit","32543151","0","05 Mar 2026 06:35:21:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 06:35:21.677","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","2978273","Week I-2 (1)","8","Date of Visit","32545767","0","19 Mar 2026 06:03:34:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 06:03:34.510","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","3018009","Week I-4 (1)","9","Date of Visit","33091315","0","08 Apr 2026 00:57:49:900","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 00:57:49.900","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","194591","KR100012002","6330","3052684","Week I-8 (1)","10","Date of Visit","33541949","0","30 Apr 2026 05:01:00:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 05:01:00.833","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","2952471","Screening","3","Date of Visit","32195576","0","04 Mar 2026 02:49:58:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 02:49:58.337","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","3008707","Week I-0 (1)","7","Date of Visit","32966870","0","17 Mar 2026 06:18:33:847","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 06:18:33.847","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","3011558","Week I-2 (1)","8","Date of Visit","33005597","0","26 Mar 2026 11:24:08:333","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 21MAR2026 > WORSENING OF UC","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 11:24:08.333","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","3035603","Induction Early Discontinuation (1)","12","Date of Visit","33313497","0","26 Mar 2026 11:25:27:263","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 11:25:27.263","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","3035604","Induction Safety Follow Up (1)","13","Date of Visit","33313498","0","24 Apr 2026 07:20:44:117","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 07:20:44.117","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","2897602","Screening","3","Date of Visit","31434378","0","28 Jan 2026 11:05:54:057","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 11:05:54.057","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","2961934","Week I-0 (1)","7","Date of Visit","32341002","0","10 Mar 2026 02:46:52:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 02:46:52.920","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","2995608","Week I-2 (1)","8","Date of Visit","32791398","0","11 Mar 2026 17:04:01:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 17:04:01.237","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","3002226","Week I-4 (1)","9","Date of Visit","32879980","0","03 Apr 2026 07:16:13:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 07:16:13.237","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","3047995","Week I-8 (1)","10","Date of Visit","33484599","0","29 Apr 2026 07:37:36:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 07:37:36.680","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193758","KR100022001","6330","3116820","Week I-12 (1)","11","Date of Visit","34396624","0","20 May 2026 07:01:24:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 07:01:24.647","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","2901844","Screening","3","Date of Visit","31487179","0","29 Jan 2026 15:34:16:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 15:34:16.113","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","2999249","Week I-0 (1)","7","Date of Visit","32841110","0","17 Mar 2026 14:32:58:450","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 14:32:58.450","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","3014022","Week I-2 (1)","8","Date of Visit","33039986","0","25 Mar 2026 14:49:51:750","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 14:49:51.750","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","3033167","Week I-4 (1)","9","Date of Visit","33280969","0","08 Apr 2026 08:26:18:217","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 08:26:18.217","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","193944","KR100022002","6330","3053502","Week I-8 (1)","10","Date of Visit","33553929","0","06 May 2026 07:37:19:013","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:37:19.013","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","2915926","Screening","3","Date of Visit","31664390","0","06 Feb 2026 05:53:46:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 05:53:46.340","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","2978181","Week I-0 (1)","7","Date of Visit","32544303","0","10 Mar 2026 03:28:23:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 03:28:23.763","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","2995635","Week I-2 (1)","8","Date of Visit","32791657","0","25 Mar 2026 14:59:54:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 14:59:54.580","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","3033187","Week I-4 (1)","9","Date of Visit","33281360","0","02 Apr 2026 09:15:58:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 09:15:58.550","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","194592","KR100022003","6330","3046820","Week I-8 (1)","10","Date of Visit","33469154","0","06 May 2026 07:40:19:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:40:19.177","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","2952452","Screening","3","Date of Visit","32195373","0","03 Mar 2026 13:27:36:117","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 13:27:36.117","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","2995739","Week I-0 (1)","7","Date of Visit","32793385","0","18 Mar 2026 11:06:56:637","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 11:06:56.637","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","3016369","Week I-2 (1)","8","Date of Visit","33070569","0","25 Mar 2026 14:30:37:387","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 14:30:37.387","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","3033113","Week I-4 (1)","9","Date of Visit","33280026","0","08 Apr 2026 08:30:13:460","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 08:30:13.460","","" +"KOR","9341","DD5-KR10002","Kangbuk Samsung Hospital","196382","KR100022004","6330","3053522","Week I-8 (1)","10","Date of Visit","33554109","0","06 May 2026 07:41:27:753","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:41:27.753","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","2915686","Screening","3","Date of Visit","31661819","0","06 Feb 2026 06:23:53:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 06:23:53.697","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","2968260","Week I-0 (1)","7","Date of Visit","32407864","0","03 Mar 2026 06:11:02:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 06:11:02.507","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","2968528","Week I-2 (1)","8","Date of Visit","32410728","0","16 Mar 2026 06:29:14:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 06:29:14.100","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","3008680","Week I-4 (1)","9","Date of Visit","32966489","0","30 Mar 2026 06:26:45:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 06:26:45.583","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","194578","KR100032001","6330","3039601","Week I-8 (1)","10","Date of Visit","33369008","0","28 Apr 2026 06:31:14:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 06:31:14.387","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","202348","KR100032002","6330","3076002","Screening","3","Date of Visit","33867454","0","20 Apr 2026 03:12:43:227","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 03:12:43.227","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","202348","KR100032002","6330","3135568","Week I-0 (1)","7","Date of Visit","34700921","0","07 May 2026 05:20:15:690","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 05:20:15.690","","" +"KOR","9357","DD5-KR10003","The Catholic university of Korea, St. Vincent's Hospital","202348","KR100032002","6330","3135743","Week I-2 (1)","8","Date of Visit","34704914","0","21 May 2026 03:20:21:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 03:20:21.247","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201014","KR100042001","6330","3049043","Screening","3","Date of Visit","33496890","0","06 Apr 2026 08:07:46:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 08:07:46.340","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201014","KR100042001","6330","3135579","Week I-0 (1)","7","Date of Visit","34701123","0","07 May 2026 04:51:50:203","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 04:51:50.203","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201014","KR100042001","6330","3135725","Week I-2 (1)","8","Date of Visit","34704476","0","21 May 2026 06:18:13:540","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 06:18:13.540","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201618","KR100042002","6330","3061016","Screening","3","Date of Visit","33643475","0","20 Apr 2026 07:53:59:767","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 07:53:59.767","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201618","KR100042002","6330","3086303","Week I-0 (1)","7","Date of Visit","34027488","0","23 Apr 2026 07:35:38:993","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 07:35:38.993","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201618","KR100042002","6330","3087185","Week I-2 (1)","8","Date of Visit","34039428","0","06 May 2026 07:55:15:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:55:15.957","","" +"KOR","9330","DD5-KR10004","The Catholic university of Korea Daejeon St Mary's Hospital","201618","KR100042002","6330","3133484","Week I-4 (1)","9","Date of Visit","34661514","0","21 May 2026 07:14:12:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 07:14:12.440","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","195133","KR100052001","6330","2927789","Screening","3","Date of Visit","31834491","0","05 Mar 2026 06:16:06:847","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 06:16:06.847","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","201015","KR100052002","6330","3049056","Screening","3","Date of Visit","33497150","0","14 Apr 2026 02:46:09:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 02:46:09.597","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","201015","KR100052002","6330","3186821","Week I-0 (1)","7","Date of Visit","34950245","0","18 May 2026 05:02:18:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 05:02:18.080","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","203952","KR100052003","6330","3113188","Screening","3","Date of Visit","34336795","0","15 May 2026 01:23:04:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 01:23:04.237","","" +"KOR","9331","DD5-KR10006","Kyung Hee University Hospital","199867","KR100062001","6330","3027022","Screening","3","Date of Visit","33202318","0","12 May 2026 02:13:23:290","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 02:13:23.290","","" +"KOR","9331","DD5-KR10006","Kyung Hee University Hospital","202499","KR100062002","6330","3078885","Screening","3","Date of Visit","33915320","0","21 Apr 2026 04:48:59:390","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 04:48:59.390","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196260","KR100072001","6330","2950170","Screening","3","Date of Visit","32159660","0","23 Feb 2026 05:59:56:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 05:59:56.767","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196260","KR100072001","6330","3039418","Week I-0 (1)","7","Date of Visit","33366068","0","30 Mar 2026 02:07:26:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 02:07:26.163","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196260","KR100072001","6330","3039455","Week I-2 (1)","8","Date of Visit","33366525","0","13 Apr 2026 01:09:55:270","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 01:09:55.270","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196260","KR100072001","6330","3061041","Week I-4 (1)","9","Date of Visit","33643916","0","27 Apr 2026 01:25:04:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 01:25:04.833","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","2952376","Screening","3","Date of Visit","32194308","0","24 Feb 2026 01:43:09:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 01:43:09.880","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","3020615","Week I-0 (1)","7","Date of Visit","33121719","0","20 Mar 2026 01:32:01:047","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 01:32:01.047","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","3020637","Week I-2 (1)","8","Date of Visit","33122092","0","01 Apr 2026 00:45:36:320","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 00:45:36.320","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","3043987","Week I-4 (1)","9","Date of Visit","33423707","0","16 Apr 2026 00:54:01:210","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 00:54:01.210","","" +"KOR","9332","DD5-KR10007","Severance Hospital Yonsei University Health System","196378","KR100072002","6330","3068605","Week I-8 (1)","10","Date of Visit","33753227","0","14 May 2026 01:03:24:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 01:03:24.137","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","2908111","Screening","3","Date of Visit","31565353","0","09 Feb 2026 06:10:44:820","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 06:10:44.820","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","2968416","Week I-0 (1)","7","Date of Visit","32409487","0","04 Mar 2026 06:48:15:403","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 06:48:15.403","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","2975847","Week I-2 (1)","8","Date of Visit","32515209","0","19 Mar 2026 06:24:56:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 06:24:56.880","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","3018065","Week I-4 (1)","9","Date of Visit","33091910","0","30 Mar 2026 06:40:45:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 06:40:45.430","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","194219","KR100082001","6330","3039609","Week I-8 (1)","10","Date of Visit","33369140","0","29 Apr 2026 03:58:48:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 03:58:48.497","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","196563","KR100082002","6330","2956259","Screening","3","Date of Visit","32258600","0","27 Feb 2026 03:27:28:627","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 03:27:28.627","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","196563","KR100082002","6330","3044147","Week I-0 (1)","7","Date of Visit","33429054","0","01 Apr 2026 07:21:48:373","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 07:21:48.373","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","196563","KR100082002","6330","3044474","Week I-2 (1)","8","Date of Visit","33434123","0","14 Apr 2026 05:23:55:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 05:23:55.823","","" +"KOR","9336","DD5-KR10008","Gangnam Severance Hospital, Yonsei University Health System","196563","KR100082002","6330","3063439","Week I-4 (1)","9","Date of Visit","33677781","0","29 Apr 2026 03:50:32:363","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 03:50:32.363","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","196687","KR100092001","6330","2958733","Screening","3","Date of Visit","32297112","0","05 Mar 2026 11:31:17:630","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 11:31:17.630","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","196687","KR100092001","6330","3040224","Week I-0 (1)","7","Date of Visit","33377094","0","30 Mar 2026 10:27:38:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 10:27:38.477","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","196687","KR100092001","6330","3040292","Week I-2 (1)","8","Date of Visit","33377972","0","15 Apr 2026 03:50:30:557","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 03:50:30.557","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","196687","KR100092001","6330","3066238","Week I-4 (1)","9","Date of Visit","33713839","0","27 Apr 2026 23:51:45:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 23:51:45.483","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","199716","KR100092002","6330","3023923","Screening","3","Date of Visit","33160335","0","24 Mar 2026 07:33:37:170","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 07:33:37.170","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","199716","KR100092002","6330","3068576","Week I-0 (1)","7","Date of Visit","33752719","0","17 Apr 2026 02:47:04:470","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 02:47:04.470","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","199716","KR100092002","6330","3072409","Week I-2 (1)","8","Date of Visit","33818008","0","30 Apr 2026 07:59:24:673","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:59:24.673","","" +"KOR","9359","DD5-KR10009","Asan Medical Center","199716","KR100092002","6330","3120150","Week I-4 (1)","9","Date of Visit","34462994","0","15 May 2026 07:20:04:573","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 07:20:04.573","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","196562","KR100112001","6330","2956247","Screening","3","Date of Visit","32258477","0","28 Feb 2026 06:07:51:427","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260228 06:07:51.427","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","196562","KR100112001","6330","3072387","Week I-0 (1)","7","Date of Visit","33817591","0","20 Apr 2026 03:03:40:900","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 03:03:40.900","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","196562","KR100112001","6330","3076108","Week I-2 (1)","8","Date of Visit","33868897","0","30 Apr 2026 07:29:21:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:29:21.817","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","196562","KR100112001","6330","3120061","Week I-4 (1)","9","Date of Visit","34461889","0","15 May 2026 05:28:25:267","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 05:28:25.267","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197145","KR100112002","6330","2968111","Screening","3","Date of Visit","32406161","0","04 Mar 2026 00:29:46:060","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 00:29:46.060","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197145","KR100112002","6330","3068630","Week I-0 (1)","7","Date of Visit","33753433","0","20 Apr 2026 02:40:37:223","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 02:40:37.223","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197145","KR100112002","6330","3076085","Week I-2 (1)","8","Date of Visit","33868620","0","30 Apr 2026 07:37:28:640","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:37:28.640","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197145","KR100112002","6330","3120089","Week I-4 (1)","9","Date of Visit","34462317","0","12 May 2026 07:13:47:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 07:13:47.853","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197473","KR100112003","6330","2975408","Screening","3","Date of Visit","32509946","0","27 Mar 2026 06:48:59:967","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 06:48:59.967","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200054","KR100112004","6330","3030607","Screening","3","Date of Visit","33248368","0","27 Mar 2026 06:26:02:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 06:26:02.757","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200054","KR100112004","6330","3068585","Week I-0 (1)","7","Date of Visit","33752939","0","20 Apr 2026 02:52:47:627","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 02:52:47.627","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200054","KR100112004","6330","3076105","Week I-2 (1)","8","Date of Visit","33868827","0","30 Apr 2026 07:41:02:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:41:02.463","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200054","KR100112004","6330","3120103","Week I-4 (1)","9","Date of Visit","34462539","0","15 May 2026 05:25:57:023","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 05:25:57.023","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200506","KR100112005","6330","3039446","Screening","3","Date of Visit","33366296","0","30 Mar 2026 07:39:55:183","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 07:39:55.183","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200506","KR100112005","6330","3132710","Week I-0 (1)","7","Date of Visit","34642879","0","08 May 2026 07:44:53:017","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 07:44:53.017","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","200506","KR100112005","6330","3138703","Week I-2 (1)","8","Date of Visit","34750908","0","19 May 2026 05:33:25:807","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 05:33:25.807","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","201619","KR100112006","6330","3061040","Screening","3","Date of Visit","33643857","0","15 Apr 2026 06:34:58:297","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 06:34:58.297","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","201619","KR100112006","6330","3126254","Week I-0 (1)","7","Date of Visit","34534699","0","04 May 2026 08:01:34:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 08:01:34.977","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","201619","KR100112006","6330","3126584","Week I-2 (1)","8","Date of Visit","34541690","0","18 May 2026 05:23:11:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 05:23:11.950","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","2876674","Screening","3","Date of Visit","31171534","0","31 Jan 2026 07:29:36:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260131 07:29:36.577","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","2938839","Week I-0 (1)","7","Date of Visit","32005870","0","16 Feb 2026 09:40:49:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 09:40:49.787","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","2939244","Week I-2 (1)","8","Date of Visit","32013052","0","05 Mar 2026 05:36:48:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 05:36:48.177","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","2978158","Week I-4 (1)","9","Date of Visit","32543999","0","07 Apr 2026 07:42:52:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 07:42:52.317","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","3051027","Week I-8 (1)","10","Date of Visit","33519306","0","14 Apr 2026 08:12:10:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 08:12:10.580","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","192765","MY100012001","6330","3064110","Week I-12 (1)","11","Date of Visit","33686183","0","20 May 2026 07:13:15:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 07:13:15.130","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","2965225","Screening","3","Date of Visit","32373165","0","05 Mar 2026 07:33:29:177","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 07:33:29.177","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","3056506","Week I-0 (1)","7","Date of Visit","33590796","0","07 May 2026 10:45:58:767","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 10:45:58.767","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","3137060","Week I-2 (1)","8","Date of Visit","34726397","0","08 May 2026 06:56:17:300","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 06:56:17.300","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","3138627","Week I-4 (1)","9","Date of Visit","34749763","0","08 May 2026 09:40:40:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 09:40:40.210","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","196989","MY100012002","6330","3167149","Week I-8 (1)","10","Date of Visit","34816849","0","11 May 2026 01:47:34:413","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 01:47:34.413","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","197158","MY100012003","6330","2968341","Screening","3","Date of Visit","32408646","0","12 Mar 2026 02:45:27:387","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 02:45:27.387","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","197158","MY100012003","6330","3047859","Week I-0 (1)","7","Date of Visit","33482694","0","15 Apr 2026 08:07:12:327","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 08:07:12.327","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","197158","MY100012003","6330","3066767","Week I-2 (1)","8","Date of Visit","33721758","0","11 May 2026 07:30:46:437","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 07:30:46.437","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","197158","MY100012003","6330","3181727","Week I-4 (1)","9","Date of Visit","34887170","0","11 May 2026 07:34:21:810","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 07:34:21.810","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","198528","MY100012004","6330","2998942","Screening","3","Date of Visit","32837406","0","11 May 2026 08:02:18:347","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 08:02:18.347","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","200805","MY100012005","6330","3044558","Screening","3","Date of Visit","33435575","0","21 May 2026 02:39:06:713","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 02:39:06.713","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","200805","MY100012005","6330","3181722","Week I-0 (1)","7","Date of Visit","34887082","0","11 May 2026 10:49:11:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 10:49:11.297","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","200805","MY100012005","6330","3185138","Week I-2 (1)","8","Date of Visit","34925381","0","22 May 2026 06:44:42:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 06:44:42.977","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","201205","MY100012006","6330","3052911","Screening","3","Date of Visit","33545686","0","21 May 2026 01:10:48:417","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 01:10:48.417","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2648952","Screening","3","Date of Visit","28474360","0","30 Oct 2025 03:50:42:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251030 03:50:42.070","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2698460","Week I-0 (1)","7","Date of Visit","29043453","0","14 Nov 2025 06:24:07:083","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251114 06:24:07.083","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2698921","Week I-2 (1)","8","Date of Visit","29047658","0","28 Nov 2025 08:54:32:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251128 08:54:32.407","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2774897","Week I-4 (1)","9","Date of Visit","29786248","0","15 Dec 2025 06:50:21:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251215 06:50:21.007","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2830990","Week I-8 (1)","10","Date of Visit","30571202","0","16 Jan 2026 03:26:20:500","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 JAN 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260116 03:26:20.500","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2880741","Week I-12 (1)","11","Date of Visit","31223195","0","12 Feb 2026 06:45:29:573","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 06:45:29.573","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2930925","Week M-4 (1)","15","Date of Visit","31879841","0","05 Mar 2026 06:27:07:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 06:27:07.387","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2978247","Week M-8 (1)","16","Date of Visit","32545567","0","08 Apr 2026 04:30:31:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 04:30:31.887","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","3052774","Week M-12 (1)","17","Date of Visit","33543622","0","04 May 2026 06:15:49:083","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 06:15:49.083","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","182606","MY100022001","6330","2930921","Unscheduled 20251128","59","Date of Visit","31879782","0","12 Feb 2026 07:01:36:683","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","28 NOV 2025","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 07:01:36.683","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","2961803","Screening","3","Date of Visit","32339270","0","02 Mar 2026 08:15:58:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 08:15:58.623","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3011119","Week I-0 (1)","7","Date of Visit","32999749","0","19 Mar 2026 04:22:09:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 04:22:09.817","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3017941","Week I-2 (1)","8","Date of Visit","33090685","0","02 Apr 2026 04:06:36:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 04:06:36.667","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3046113","Week I-4 (1)","9","Date of Visit","33457633","0","15 Apr 2026 09:28:50:423","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 09:28:50.423","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3067013","Week I-8 (1)","10","Date of Visit","33725494","0","14 May 2026 06:00:57:167","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 06:00:57.167","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","196834","MY100022002","6330","3120132","Unscheduled 20260430","59","Date of Visit","34462804","0","30 Apr 2026 07:50:20:673","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","30 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","REPEAT BLOOD TEST FOR HAEMATOLOGY AND CHEMISTRY PANEL.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:50:20.673","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","2968122","Screening","3","Date of Visit","32406314","0","03 Apr 2026 07:04:12:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 07:04:12.757","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","3011300","Week I-0 (1)","7","Date of Visit","33002718","0","03 Apr 2026 07:06:36:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 07:06:36.510","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","3017933","Week I-2 (1)","8","Date of Visit","33090515","0","31 Mar 2026 06:55:12:740","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 06:55:12.740","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","3041926","Week I-4 (1)","9","Date of Visit","33397359","0","15 Apr 2026 09:34:20:970","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 09:34:20.970","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197146","MY100022003","6330","3067030","Week I-8 (1)","10","Date of Visit","33725663","0","14 May 2026 05:56:20:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 2026","Visit Start Date","Audio-Videoconferencing","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 05:56:20.027","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","2980923","Screening","3","Date of Visit","32578730","0","07 Mar 2026 16:22:08:920","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260307 16:22:08.920","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3058555","Week I-0 (1)","7","Date of Visit","33616838","0","10 Apr 2026 06:59:04:687","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 06:59:04.687","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3058992","Week I-2 (1)","8","Date of Visit","33621694","0","24 Apr 2026 06:36:14:843","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 06:36:14.843","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3090275","Week I-4 (1)","9","Date of Visit","34091722","0","05 May 2026 06:50:07:703","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 06:50:07.703","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3017946","Unscheduled 20260319","59","Date of Visit","33090781","0","19 Mar 2026 04:45:58:877","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","19 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","REPEAT HAEMATOLOGY PANEL","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 04:45:58.877","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","197729","MY100022004","6330","3042026","Unscheduled 20260331","59","Date of Visit","33644984","0","13 Apr 2026 03:15:02:787","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","31 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","COLONOSCOPY AND BIOPSY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 03:15:02.787","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","201019","MY100022005","6330","3049112","Screening","3","Date of Visit","33497740","0","07 Apr 2026 03:58:01:370","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 03:58:01.370","","" +"MYS","9009","DD5-MY10002","Sultan Idris Shah Hospital","201019","MY100022005","6330","3189589","Week I-0 (1)","7","Date of Visit","34990878","0","14 May 2026 03:54:21:827","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 03:54:21.827","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2876394","Screening","3","Date of Visit","31167867","0","18 Jan 2026 09:07:55:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260118 09:07:55.700","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2910008","Week I-0 (1)","7","Date of Visit","31589325","0","05 Feb 2026 05:36:38:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 05:36:38.080","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2915977","Week I-2 (1)","8","Date of Visit","31665432","0","16 Feb 2026 06:33:06:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 06:33:06.163","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2938903","Week I-4 (1)","9","Date of Visit","32007153","0","04 Mar 2026 02:42:40:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 02:42:40.113","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","2975481","Week I-8 (1)","10","Date of Visit","32510780","0","01 Apr 2026 00:21:33:230","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 00:21:33.230","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","3043958","Week I-12 (1)","11","Date of Visit","33421966","0","29 Apr 2026 02:23:12:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 02:23:12.437","","" +"MYS","9013","DD5-MY10004","Hospital Sultanah Bahiyah","192752","MY100042001","6330","3116338","Week M-4 (1)","15","Date of Visit","34389736","0","24 May 2026 06:39:01:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260524 06:39:01.803","","" +"MYS","9007","DD5-MY10006","Hospital Ampang","204255","MY100062001","6330","3119788","Screening","3","Date of Visit","34457129","0","30 Apr 2026 04:12:41:397","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 04:12:41.397","","" +"MYS","9007","DD5-MY10006","Hospital Ampang","211381","MY100062002","6330","3204985","Screening","3","Date of Visit","35210667","0","21 May 2026 06:28:39:400","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 06:28:39.400","","" +"MYS","9007","DD5-MY10006","Hospital Ampang","211655","MY100062003","6330","3210741","Screening","3","Date of Visit","35285465","0","25 May 2026 02:22:28:227","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 02:22:28.227","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2672359","Screening","3","Date of Visit","28722934","0","27 Nov 2025 07:38:31:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251127 07:38:31.447","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2767669","Week I-0 (1)","7","Date of Visit","29696309","0","27 Nov 2025 07:57:14:923","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251127 07:57:14.923","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2768833","Week I-2 (1)","8","Date of Visit","29706361","0","11 Dec 2025 02:33:38:837","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251211 02:33:38.837","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2825745","Week I-4 (1)","9","Date of Visit","30505339","0","23 Dec 2025 06:48:06:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251223 06:48:06.813","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2850205","Week I-8 (1)","10","Date of Visit","30824479","0","19 Jan 2026 01:15:25:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 01:15:25.580","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2883529","Week I-12 (1)","11","Date of Visit","31253782","0","23 Feb 2026 07:08:02:357","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 07:08:02.357","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","2950509","Week M-4 (1)","15","Date of Visit","32164476","0","16 Mar 2026 01:57:46:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 01:57:46.583","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","183860","MY100072001","6330","3008369","Week M-8 (1)","16","Date of Visit","32963293","0","20 Apr 2026 02:25:24:623","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 02:25:24.623","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2850028","Screening","3","Date of Visit","30822409","0","05 Jan 2026 04:16:08:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260105 04:16:08.617","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2895850","Week I-0 (1)","7","Date of Visit","31412816","0","29 Jan 2026 00:38:01:513","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 00:38:01.513","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2901525","Week I-2 (1)","8","Date of Visit","31483062","0","11 Feb 2026 00:05:28:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 00:05:28.337","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2927617","Week I-4 (1)","9","Date of Visit","31831921","0","11 Mar 2026 00:26:10:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 00:26:10.627","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","2998866","Week I-8 (1)","10","Date of Visit","32836719","0","26 Mar 2026 01:06:01:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 01:06:01.387","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","191586","MY100072002","6330","3034018","Week I-12 (1)","11","Date of Visit","33292011","0","21 Apr 2026 07:58:16:167","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 07:58:16.167","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2867185","Screening","3","Date of Visit","31055951","0","29 Jan 2026 00:59:54:483","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 00:59:54.483","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2897513","Week I-0 (1)","7","Date of Visit","31433267","0","29 Jan 2026 01:14:53:097","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 01:14:53.097","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2901569","Week I-2 (1)","8","Date of Visit","31483514","0","11 Feb 2026 00:16:11:877","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 00:16:11.877","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2927620","Week I-4 (1)","9","Date of Visit","31831968","0","11 Mar 2026 01:13:25:317","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 01:13:25.317","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","2998930","Week I-8 (1)","10","Date of Visit","32837272","0","27 Mar 2026 03:16:44:377","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 03:16:44.377","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","192337","MY100072003","6330","3037012","Week I-12 (1)","11","Date of Visit","33333437","0","20 Apr 2026 02:31:54:313","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 02:31:54.313","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","196381","MY100072004","6330","2952423","Screening","3","Date of Visit","32194899","0","13 Apr 2026 00:11:39:360","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 00:11:39.360","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","200231","MY100072005","6330","3034070","Screening","3","Date of Visit","33292850","0","13 Apr 2026 00:13:05:513","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 00:13:05.513","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","201018","MY100072006","6330","3049101","Screening","3","Date of Visit","33497627","0","19 May 2026 01:25:52:657","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 01:25:52.657","","" +"MYS","9011","DD5-MY10008","Hospital Sultanah Aminah","198351","MY100082001","6330","2995680","Screening","3","Date of Visit","32792488","0","16 Mar 2026 03:18:46:997","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 03:18:46.997","","" +"MYS","9011","DD5-MY10008","Hospital Sultanah Aminah","198351","MY100082001","6330","3061060","Week I-0 (1)","7","Date of Visit","33644146","0","14 Apr 2026 08:07:46:590","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 08:07:46.590","","" +"MYS","9011","DD5-MY10008","Hospital Sultanah Aminah","198351","MY100082001","6330","3064088","Week I-2 (1)","8","Date of Visit","33685912","0","04 May 2026 06:06:35:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 06:06:35.823","","" +"MYS","9011","DD5-MY10008","Hospital Sultanah Aminah","198351","MY100082001","6330","3126344","Week I-4 (1)","9","Date of Visit","34536000","0","13 May 2026 07:19:39:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 07:19:39.413","","" +"NLD","9595","DD5-NL10004","AMC","200276","NL100042001","6330","3035043","Screening","3","Date of Visit","33306534","0","26 Mar 2026 10:44:13:977","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 10:44:13.977","","" +"NLD","9595","DD5-NL10004","AMC","200276","NL100042001","6330","3087008","Week I-0 (1)","7","Date of Visit","34036827","0","28 Apr 2026 09:19:40:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 09:19:40.557","","" +"NLD","9595","DD5-NL10004","AMC","200276","NL100042001","6330","3114424","Week I-2 (1)","8","Date of Visit","34358030","0","21 May 2026 08:37:50:747","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 08:37:50.747","","" +"NLD","9595","DD5-NL10004","AMC","200276","NL100042001","6330","3205593","Week I-4 (1)","9","Date of Visit","35217603","0","21 May 2026 08:43:43:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 08:43:43.230","","" +"NLD","9595","DD5-NL10004","AMC","200908","NL100042002","6330","3046697","Screening","3","Date of Visit","33467381","0","07 Apr 2026 12:39:53:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 12:39:53.817","","" +"NLD","9595","DD5-NL10004","AMC","200908","NL100042002","6330","3125524","Week I-0 (1)","7","Date of Visit","34525273","0","01 May 2026 10:40:07:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 10:40:07.857","","" +"NLD","9595","DD5-NL10004","AMC","200908","NL100042002","6330","3125559","Week I-2 (1)","8","Date of Visit","34525948","0","15 May 2026 09:08:37:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 09:08:37.227","","" +"NLD","9595","DD5-NL10004","AMC","202001","NL100042003","6330","3069395","Screening","3","Date of Visit","33765964","0","16 Apr 2026 10:16:23:233","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 10:16:23.233","","" +"NLD","9619","DD5-NL10005","Radboud Umcn","200679","NL100052001","6330","3041885","Screening","3","Date of Visit","33396774","0","12 May 2026 13:36:50:263","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 13:36:50.263","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192399","PL100012001","6330","2868562","Screening","3","Date of Visit","31073118","0","10 Mar 2026 14:23:31:690","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 14:23:31.690","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","2874870","Screening","3","Date of Visit","31149355","0","14 Jan 2026 15:39:02:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260114 15:39:02.773","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","2940911","Week I-0 (1)","7","Date of Visit","32037597","0","17 Feb 2026 15:18:11:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 15:18:11.587","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","2941832","Week I-2 (1)","8","Date of Visit","32049447","0","05 Mar 2026 09:15:36:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 09:15:36.577","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","2978730","Week I-4 (1)","9","Date of Visit","32551170","0","20 Mar 2026 10:47:06:760","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 10:47:06.760","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","3022018","Week I-8 (1)","10","Date of Visit","33136195","0","16 Apr 2026 09:42:01:310","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 09:42:01.310","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192692","PL100012002","6330","3069612","Week I-12 (1)","11","Date of Visit","33770098","0","14 May 2026 08:56:30:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 08:56:30.463","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","2877642","Screening","3","Date of Visit","31183306","0","15 Jan 2026 12:43:47:623","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260115 12:43:47.623","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","2943907","Week I-0 (1)","7","Date of Visit","32076190","0","19 Feb 2026 12:44:50:227","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 12:44:50.227","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","2946678","Week I-2 (1)","8","Date of Visit","32113147","0","05 Mar 2026 10:00:50:500","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 10:00:50.500","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","2978926","Week I-4 (1)","9","Date of Visit","32553635","0","20 Mar 2026 10:56:41:370","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 10:56:41.370","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","3022027","Week I-8 (1)","10","Date of Visit","33136410","0","15 Apr 2026 08:46:51:690","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 08:46:51.690","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192809","PL100012003","6330","3066900","Week I-12 (1)","11","Date of Visit","33723843","0","13 May 2026 14:47:22:457","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 14:47:22.457","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192829","PL100012004","6330","2878027","Screening","3","Date of Visit","31187515","0","06 Feb 2026 10:05:29:157","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 10:05:29.157","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","2878270","Screening","3","Date of Visit","31190788","0","15 Jan 2026 13:40:35:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260115 13:40:35.693","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","2940648","Week I-0 (1)","7","Date of Visit","32033850","0","17 Feb 2026 14:22:24:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 14:22:24.803","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","2941519","Week I-2 (1)","8","Date of Visit","32045985","0","05 Mar 2026 09:38:39:907","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 09:38:39.907","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","2978840","Week I-4 (1)","9","Date of Visit","32552141","0","20 Mar 2026 10:23:31:380","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 10:23:31.380","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","3021941","Week I-8 (1)","10","Date of Visit","33135618","0","15 Apr 2026 12:23:36:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 12:23:36.867","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192842","PL100012005","6330","3067589","Week I-12 (1)","11","Date of Visit","33739959","0","14 May 2026 08:22:08:997","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 08:22:08.997","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2878294","Screening","3","Date of Visit","31191149","0","15 Jan 2026 14:07:26:787","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260115 14:07:26.787","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2929587","Week I-0 (1)","7","Date of Visit","31858635","0","12 Feb 2026 10:46:56:067","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 10:46:56.067","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2931976","Week I-2 (1)","8","Date of Visit","31897740","0","25 Feb 2026 12:46:12:173","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 12:46:12.173","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2957626","Week I-4 (1)","9","Date of Visit","32281725","0","10 Mar 2026 14:09:54:183","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 14:09:54.183","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","2998007","Week I-8 (1)","10","Date of Visit","32824051","0","07 Apr 2026 11:07:13:847","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 11:07:13.847","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192843","PL100012006","6330","3051555","Week I-12 (1)","11","Date of Visit","33526499","0","06 May 2026 09:14:54:510","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 09:14:54.510","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","2880159","Screening","3","Date of Visit","31214913","0","19 Jan 2026 09:17:59:113","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 09:17:59.113","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","2955393","Week I-0 (1)","7","Date of Visit","32246445","0","25 Feb 2026 14:00:44:620","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 14:00:44.620","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","2957773","Week I-2 (1)","8","Date of Visit","32284222","0","12 Mar 2026 11:01:43:777","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 11:01:43.777","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","3003955","Week I-4 (1)","9","Date of Visit","32903169","0","26 Mar 2026 09:12:37:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 09:12:37.173","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","3035108","Week I-8 (1)","10","Date of Visit","33308025","0","20 May 2026 09:59:47:287","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 09:59:47.287","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192921","PL100012007","6330","3203316","Week I-12 (1)","11","Date of Visit","35188717","0","20 May 2026 10:00:42:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 10:00:42.577","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193787","PL100012008","6330","2898120","Screening","3","Date of Visit","31440730","0","02 Mar 2026 14:20:36:107","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 14:20:36.107","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193895","PL100012009","6330","2900655","Screening","3","Date of Visit","31472400","0","05 Mar 2026 09:11:27:043","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 09:11:27.043","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193916","PL100012010","6330","2901135","Screening","3","Date of Visit","31477583","0","25 Feb 2026 09:38:03:703","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 09:38:03.703","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194440","PL100012011","6330","2912610","Screening","3","Date of Visit","31625379","0","12 Feb 2026 10:16:09:710","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 10:16:09.710","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194508","PL100012012","6330","2914075","Screening","3","Date of Visit","31641826","0","05 Mar 2026 09:13:19:957","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 09:13:19.957","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","2914363","Screening","3","Date of Visit","31644437","0","06 Feb 2026 10:22:30:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 10:22:30.613","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","3016739","Week I-0 (1)","7","Date of Visit","33075096","0","24 Mar 2026 13:09:02:290","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 13:09:02.290","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","3029685","Week I-2 (1)","8","Date of Visit","33234306","0","01 Apr 2026 12:05:46:477","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 12:05:46.477","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","3045157","Week I-4 (1)","9","Date of Visit","33443134","0","16 Apr 2026 10:15:17:713","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 10:15:17.713","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194519","PL100012013","6330","3069711","Week I-8 (1)","10","Date of Visit","33771364","0","13 May 2026 14:19:48:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 14:19:48.277","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194694","PL100012014","6330","2917890","Screening","3","Date of Visit","31697014","0","19 Feb 2026 10:31:13:403","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 10:31:13.403","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","2926816","Screening","3","Date of Visit","31820869","0","11 Feb 2026 09:38:43:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 09:38:43.517","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3029460","Week I-0 (1)","7","Date of Visit","33231894","0","26 Mar 2026 09:59:55:013","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 09:59:55.013","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3035289","Week I-2 (1)","8","Date of Visit","33309677","0","08 Apr 2026 13:58:54:540","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 13:58:54.540","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3055003","Week I-4 (1)","9","Date of Visit","33571642","0","22 Apr 2026 09:58:48:703","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 09:58:48.703","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3083738","Week I-8 (1)","10","Date of Visit","33986399","0","20 May 2026 10:56:16:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 10:56:16.737","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195083","PL100012015","6330","3193899","Unscheduled 20260421","59","Date of Visit","35052630","0","14 May 2026 10:03:02:770","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","COLLECTING DNA SAMPLE WHICH WAS NOT COLLECTED DURING DAY1 VISIT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 10:03:02.770","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","2927066","Screening","3","Date of Visit","31823713","0","11 Feb 2026 11:39:17:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 11:39:17.050","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","3016355","Week I-0 (1)","7","Date of Visit","33070462","0","24 Mar 2026 12:19:01:317","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 12:19:01.317","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","3029520","Week I-2 (1)","8","Date of Visit","33232490","0","02 Apr 2026 10:27:13:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 10:27:13.133","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","3046983","Week I-4 (1)","9","Date of Visit","33470734","0","15 Apr 2026 07:44:58:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 07:44:58.177","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","195095","PL100012016","6330","3066705","Week I-8 (1)","10","Date of Visit","33720541","0","20 May 2026 09:48:17:690","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 09:48:17.690","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196420","PL100012017","6330","2953336","Screening","3","Date of Visit","32209536","0","02 Apr 2026 11:34:39:170","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 11:34:39.170","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196652","PL100012018","6330","2958090","Screening","3","Date of Visit","32289477","0","02 Mar 2026 11:00:57:537","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 11:00:57.537","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196652","PL100012018","6330","3045099","Week I-0 (1)","7","Date of Visit","33442550","0","02 Apr 2026 11:57:02:727","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 11:57:02.727","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196652","PL100012018","6330","3047165","Week I-2 (1)","8","Date of Visit","33473032","0","15 Apr 2026 12:30:50:923","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 12:30:50.923","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196652","PL100012018","6330","3067600","Week I-4 (1)","9","Date of Visit","33740267","0","28 Apr 2026 13:12:22:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 13:12:22.417","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","202625","PL100012019","6330","3081767","Screening","3","Date of Visit","33959401","0","13 May 2026 12:28:11:417","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 12:28:11.417","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","204236","PL100012020","6330","3119249","Screening","3","Date of Visit","34449686","0","04 May 2026 11:58:01:560","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 11:58:01.560","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2872148","Screening","3","Date of Visit","31114375","0","12 Jan 2026 11:36:17:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260112 11:36:17.313","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2905827","Week I-0 (1)","7","Date of Visit","31535871","0","10 Feb 2026 12:37:18:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 12:37:18.940","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2926383","Week I-2 (1)","8","Date of Visit","31813598","0","11 Feb 2026 09:07:40:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 09:07:40.593","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2928858","Week I-4 (1)","9","Date of Visit","31847940","0","09 Mar 2026 11:30:02:287","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 11:30:02.287","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","2990442","Week I-8 (1)","10","Date of Visit","32715754","0","30 Mar 2026 05:45:26:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 05:45:26.163","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","3039546","Week I-12 (1)","11","Date of Visit","33368123","0","06 May 2026 07:13:20:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:13:20.557","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192570","PL100022001","6330","3039550","Unscheduled 20260326","59","Date of Visit","33368151","0","30 Mar 2026 05:50:38:927","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BIOCHEMISTRY AND HEMATOLOGY CHECKUP","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 05:50:38.927","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2872226","Screening","3","Date of Visit","31115236","0","20 Jan 2026 14:26:43:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 14:26:43.867","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2920080","Week I-0 (1)","7","Date of Visit","31726112","0","10 Feb 2026 11:25:04:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 11:25:04.887","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2926127","Week I-2 (1)","8","Date of Visit","31809633","0","23 Feb 2026 11:21:10:680","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 11:21:10.680","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2944604","Week I-4 (1)","9","Date of Visit","32085391","0","13 Mar 2026 08:23:08:300","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 08:23:08.300","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","3006074","Week I-8 (1)","10","Date of Visit","32933598","0","10 Apr 2026 09:59:02:670","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 09:59:02.670","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","3059591","Week I-12 (1)","11","Date of Visit","33627591","0","06 May 2026 08:16:01:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 08:16:01.880","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","2903845","Unscheduled 20260127","59","Date of Visit","31516050","0","29 Jan 2026 10:59:07:897","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","FSH RETEST","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 10:59:07.897","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192574","PL100022002","6330","3025726","Unscheduled 20260320","59","Date of Visit","33185453","0","23 Mar 2026 11:28:46:717","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","RETEST FOR CALPROTECTIN","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 11:28:46.717","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2874496","Screening","3","Date of Visit","31143966","0","29 Jan 2026 06:51:08:973","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 06:51:08.973","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2902345","Week I-0 (1)","7","Date of Visit","31492053","0","29 Jan 2026 11:28:11:703","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260129 11:28:11.703","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2903890","Week I-2 (1)","8","Date of Visit","31516742","0","12 Feb 2026 13:10:01:187","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 13:10:01.187","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2932811","Week I-4 (1)","9","Date of Visit","31910523","0","09 Mar 2026 10:58:06:573","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 10:58:06.573","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","2990359","Week I-8 (1)","10","Date of Visit","32714612","0","30 Mar 2026 05:56:03:420","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 05:56:03.420","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","3039555","Week I-12 (1)","11","Date of Visit","33368295","0","06 May 2026 06:33:59:813","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 06:33:59.813","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192674","PL100022003","6330","3039558","Unscheduled 20260323","59","Date of Visit","33369330","0","30 Mar 2026 06:47:49:160","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","23 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BIOCHEMISTRY AND HEMATOLOGY CHECKUP","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 06:47:49.160","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2879015","Screening","3","Date of Visit","31200323","0","15 Jan 2026 14:03:26:963","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260115 14:03:26.963","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2920211","Week I-0 (1)","7","Date of Visit","31728463","0","11 Feb 2026 10:16:52:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 10:16:52.150","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2929064","Week I-2 (1)","8","Date of Visit","31851145","0","04 Mar 2026 12:38:01:007","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 12:38:01.007","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2976938","Week I-4 (1)","9","Date of Visit","32529100","0","10 Mar 2026 13:30:26:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 13:30:26.667","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2997915","Week I-8 (1)","10","Date of Visit","32822591","0","09 Apr 2026 10:38:28:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 10:38:28.317","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","3057165","Week I-12 (1)","11","Date of Visit","33598790","0","06 May 2026 06:57:01:220","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 06:57:01.220","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2929061","Unscheduled 20260128","59","Date of Visit","31851015","0","11 Feb 2026 10:14:24:403","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","28 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","RETEST FOR BIOCHEMISTRY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 10:14:24.403","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","192869","PL100022004","6330","2952884","Unscheduled 20260121","59","Date of Visit","32205450","0","24 Feb 2026 07:44:25:377","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","CHEST CT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 07:44:25.377","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193255","PL100022005","6330","2886969","Screening","3","Date of Visit","31295831","0","13 Feb 2026 10:42:00:737","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 10:42:00.737","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","2887060","Screening","3","Date of Visit","31297212","0","20 Jan 2026 14:28:28:143","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 14:28:28.143","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","2919939","Week I-0 (1)","7","Date of Visit","31724581","0","11 Feb 2026 13:02:41:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 13:02:41.697","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","2929533","Week I-2 (1)","8","Date of Visit","31857766","0","23 Feb 2026 12:10:51:760","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 12:10:51.760","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","2951309","Week I-4 (1)","9","Date of Visit","32175860","0","13 Mar 2026 08:42:44:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 08:42:44.580","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","3006135","Week I-8 (1)","10","Date of Visit","32934351","0","10 Apr 2026 09:42:28:657","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 09:42:28.657","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193259","PL100022006","6330","3059554","Week I-12 (1)","11","Date of Visit","33627234","0","06 May 2026 07:50:55:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 07:50:55.137","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","195964","PL100022007","6330","2943669","Screening","3","Date of Visit","32072994","0","06 Mar 2026 09:37:07:530","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 09:37:07.530","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","195964","PL100022007","6330","2981793","Unscheduled 20260226","59","Date of Visit","32591255","0","06 Mar 2026 10:37:14:677","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","26 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","TB RETEST","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 10:37:14.677","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","2950556","Screening","3","Date of Visit","32165016","0","30 Mar 2026 08:40:52:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 08:40:52.097","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","3025108","Week I-0 (1)","7","Date of Visit","33176093","0","30 Mar 2026 09:39:24:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 09:39:24.137","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","3040093","Week I-2 (1)","8","Date of Visit","33375451","0","10 Apr 2026 10:20:13:483","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 10:20:13.483","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","3059667","Week I-4 (1)","9","Date of Visit","33628236","0","07 May 2026 08:08:56:293","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 08:08:56.293","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","196284","PL100022008","6330","3136143","Week I-8 (1)","10","Date of Visit","34711296","0","19 May 2026 12:30:04:133","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 12:30:04.133","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197198","PL100022009","6330","2969288","Screening","3","Date of Visit","32422666","0","30 Mar 2026 10:27:30:377","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 10:27:30.377","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197198","PL100022009","6330","3018354","Week I-0 (1)","7","Date of Visit","33094638","0","30 Mar 2026 11:31:01:013","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 11:31:01.013","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197198","PL100022009","6330","3040516","Week I-2 (1)","8","Date of Visit","33380200","0","10 Apr 2026 09:32:39:630","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 09:32:39.630","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197198","PL100022009","6330","3059526","Week I-4 (1)","9","Date of Visit","33626881","0","22 Apr 2026 10:56:15:753","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 10:56:15.753","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197206","PL100022010","6330","2969486","Screening","3","Date of Visit","32426452","0","31 Mar 2026 11:16:47:993","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 11:16:47.993","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197206","PL100022010","6330","3028839","Week I-0 (1)","7","Date of Visit","33224418","0","31 Mar 2026 13:15:17:657","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 13:15:17.657","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197206","PL100022010","6330","3043231","Week I-2 (1)","8","Date of Visit","33411759","0","10 Apr 2026 10:24:42:787","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 10:24:42.787","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","197206","PL100022010","6330","3059681","Week I-4 (1)","9","Date of Visit","33628343","0","07 May 2026 09:15:38:197","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 09:15:38.197","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","198771","PL100022011","6330","3003471","Screening","3","Date of Visit","32895910","0","01 Apr 2026 06:44:18:217","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 06:44:18.217","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199047","PL100022012","6330","3009742","Screening","3","Date of Visit","32981524","0","07 Apr 2026 11:53:41:207","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 11:53:41.207","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199047","PL100022012","6330","3046790","Week I-0 (1)","7","Date of Visit","33468674","0","10 Apr 2026 08:23:08:257","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 08:23:08.257","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199047","PL100022012","6330","3059266","Week I-2 (1)","8","Date of Visit","33624706","0","22 Apr 2026 10:36:23:470","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 10:36:23.470","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199047","PL100022012","6330","3083990","Week I-4 (1)","9","Date of Visit","33988854","0","07 May 2026 10:30:27:433","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 10:30:27.433","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199193","PL100022013","6330","3012947","Screening","3","Date of Visit","33025581","0","21 Apr 2026 06:09:25:463","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 06:09:25.463","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199193","PL100022013","6330","3064463","Week I-0 (1)","7","Date of Visit","33690765","0","21 Apr 2026 09:07:08:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 09:07:08.353","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199193","PL100022013","6330","3079801","Week I-2 (1)","8","Date of Visit","33928128","0","07 May 2026 12:58:57:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 12:58:57.657","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199193","PL100022013","6330","3137643","Week I-4 (1)","9","Date of Visit","34736590","0","19 May 2026 12:31:48:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 12:31:48.813","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3021179","Screening","3","Date of Visit","33128455","0","31 Mar 2026 13:12:34:157","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 13:12:34.157","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3051088","Week I-0 (1)","7","Date of Visit","33520355","0","10 Apr 2026 12:32:51:210","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 12:32:51.210","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3059977","Week I-2 (1)","8","Date of Visit","33631957","0","07 May 2026 07:36:03:490","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 07:36:03.490","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3136048","Week I-4 (1)","9","Date of Visit","34709795","0","08 May 2026 07:14:42:847","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 07:14:42.847","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","199587","PL100022014","6330","3137617","Unscheduled 20260424","59","Date of Visit","34736377","0","07 May 2026 12:53:38:537","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","24 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","BLOOD RETEST","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 12:53:38.537","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201641","PL100022015","6330","3061388","Screening","3","Date of Visit","33648573","0","28 Apr 2026 10:15:19:757","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 10:15:19.757","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201641","PL100022015","6330","3113994","Week I-0 (1)","7","Date of Visit","34348887","0","07 May 2026 11:29:27:290","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 11:29:27.290","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201978","PL100022016","6330","3068939","Screening","3","Date of Visit","33759249","0","05 May 2026 09:05:08:527","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 09:05:08.527","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201995","PL100022017","6330","3069300","Screening","3","Date of Visit","33764302","0","28 Apr 2026 11:45:50:727","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:45:50.727","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","203839","PL100022018","6330","3111377","Screening","3","Date of Visit","34312673","0","27 Apr 2026 08:50:36:813","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 08:50:36.813","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","209100","PL100022019","6330","3172932","Screening","3","Date of Visit","34864807","0","11 May 2026 06:21:23:173","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 06:21:23.173","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","210836","PL100022020","6330","3193308","Screening","3","Date of Visit","35041601","0","14 May 2026 07:12:10:843","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 07:12:10.843","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","194526","PL100042001","6330","2914497","Screening","3","Date of Visit","31645757","0","03 Mar 2026 10:08:46:857","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 10:08:46.857","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","199247","PL100042002","6330","3013979","Screening","3","Date of Visit","33039454","0","20 Apr 2026 12:11:19:473","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 12:11:19.473","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","199257","PL100042003","6330","3014253","Screening","3","Date of Visit","33042159","0","29 Apr 2026 05:21:55:850","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 05:21:55.850","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","201819","PL100042004","6330","3065078","Screening","3","Date of Visit","33698035","0","29 Apr 2026 06:21:38:083","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 06:21:38.083","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","204856","PL100042005","6330","3132823","Screening","3","Date of Visit","34644634","0","06 May 2026 11:58:05:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 11:58:05.433","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","204856","PL100042005","6330","3188947","Week I-0 (1)","7","Date of Visit","34982015","0","13 May 2026 06:54:31:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 06:54:31.177","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2874976","Screening","3","Date of Visit","31150330","0","23 Jan 2026 14:07:44:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 14:07:44.803","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2917325","Week I-0 (1)","7","Date of Visit","31689554","0","09 Feb 2026 14:04:39:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 14:04:39.790","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2923300","Week I-2 (1)","8","Date of Visit","31769311","0","23 Feb 2026 11:10:58:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 11:10:58.323","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2951180","Week I-4 (1)","9","Date of Visit","32174325","0","04 Mar 2026 09:13:21:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 09:13:21.810","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","2976226","Week I-8 (1)","10","Date of Visit","32520312","0","09 Apr 2026 09:00:15:370","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 09:00:15.370","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192697","PL100052001","6330","3056763","Week I-12 (1)","11","Date of Visit","33594443","0","13 May 2026 11:04:00:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 11:04:00.080","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","2879654","Screening","3","Date of Visit","31208626","0","30 Jan 2026 14:49:53:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260130 14:49:53.027","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","2953327","Week I-0 (1)","7","Date of Visit","32209498","0","04 Mar 2026 07:32:24:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 07:32:24.310","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","2975935","Week I-2 (1)","8","Date of Visit","32516142","0","18 Mar 2026 08:03:11:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 08:03:11.087","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","3015664","Week I-4 (1)","9","Date of Visit","33058863","0","09 Apr 2026 08:40:38:793","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 08:40:38.793","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","3056699","Week I-8 (1)","10","Date of Visit","33593610","0","30 Apr 2026 06:35:58:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 06:35:58.020","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","192897","PL100052002","6330","3119946","Week I-12 (1)","11","Date of Visit","34460263","0","21 May 2026 09:39:37:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 09:39:37.597","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","193444","PL100052003","6330","2890664","Screening","3","Date of Visit","31340596","0","25 Feb 2026 08:52:35:817","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 08:52:35.817","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","2954926","Screening","3","Date of Visit","32238752","0","25 Mar 2026 10:57:54:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 10:57:54.430","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","3051120","Week I-0 (1)","7","Date of Visit","33520821","0","15 Apr 2026 07:37:46:973","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 07:37:46.973","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","3066688","Week I-2 (1)","8","Date of Visit","33720177","0","30 Apr 2026 06:38:42:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 06:38:42.447","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","3119952","Week I-4 (1)","9","Date of Visit","34460309","0","14 May 2026 08:39:23:543","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 08:39:23.543","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196494","PL100052004","6330","3066576","Unscheduled 20260326","59","Date of Visit","33718937","0","15 Apr 2026 07:12:39:227","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","THE VISIT TOOK PLACE DUE TO HBV COLLECTION.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 07:12:39.227","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196501","PL100052005","6330","2955044","Screening","3","Date of Visit","32239956","0","09 Apr 2026 17:49:51:997","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 17:49:51.997","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","2955213","Screening","3","Date of Visit","32243317","0","25 Mar 2026 09:30:01:067","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 09:30:01.067","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","3018472","Week I-0 (1)","7","Date of Visit","33096516","0","25 Mar 2026 10:35:26:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 10:35:26.667","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","3032160","Week I-2 (1)","8","Date of Visit","33269595","0","15 Apr 2026 08:50:20:333","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 08:50:20.333","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","3066909","Week I-4 (1)","9","Date of Visit","33724004","0","22 Apr 2026 10:28:05:497","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 10:28:05.497","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196509","PL100052006","6330","3083923","Week I-8 (1)","10","Date of Visit","33988292","0","19 May 2026 07:40:28:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 07:40:28.077","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","2965686","Screening","3","Date of Visit","32377184","0","25 Mar 2026 10:58:56:323","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 10:58:56.323","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","3028083","Week I-0 (1)","7","Date of Visit","33215549","0","26 Mar 2026 10:40:33:277","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 10:40:33.277","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","3035399","Week I-2 (1)","8","Date of Visit","33311531","0","16 Apr 2026 07:39:06:473","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 07:39:06.473","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","3069208","Week I-4 (1)","9","Date of Visit","33763192","0","29 Apr 2026 06:17:57:463","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 06:17:57.463","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","197011","PL100052007","6330","3116567","Week I-8 (1)","10","Date of Visit","34393610","0","19 May 2026 07:54:42:090","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 07:54:42.090","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199204","PL100052008","6330","3013105","Screening","3","Date of Visit","33027448","0","25 Mar 2026 11:00:23:893","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 11:00:23.893","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199204","PL100052008","6330","3111107","Week I-0 (1)","7","Date of Visit","34310189","0","08 May 2026 12:48:34:960","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 12:48:34.960","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199204","PL100052008","6330","3168256","Week I-2 (1)","8","Date of Visit","34830919","0","15 May 2026 05:52:25:367","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 05:52:25.367","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199482","PL100052009","6330","3019090","Screening","3","Date of Visit","33103817","0","25 Mar 2026 11:01:10:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 11:01:10.537","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199482","PL100052009","6330","3079813","Week I-0 (1)","7","Date of Visit","33928452","0","29 Apr 2026 06:35:30: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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 06:35:30.297","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199482","PL100052009","6330","3116611","Week I-2 (1)","8","Date of Visit","34394085","0","14 May 2026 08:27:42:377","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 08:27:42.377","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199792","PL100052010","6330","3025328","Screening","3","Date of Visit","33179393","0","25 Mar 2026 11:08:44:240","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 11:08:44.240","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199792","PL100052010","6330","3083246","Week I-0 (1)","7","Date of Visit","33978547","0","30 Apr 2026 07:41:34:650","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:41:34.650","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","199792","PL100052010","6330","3120105","Week I-2 (1)","8","Date of Visit","34462562","0","14 May 2026 08:19:59:907","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 08:19:59.907","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","200291","PL100052011","6330","3035320","Screening","3","Date of Visit","33309958","0","14 May 2026 08:16:52:957","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 08:16:52.957","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","202007","PL100052012","6330","3069532","Screening","3","Date of Visit","33768953","0","24 Apr 2026 06:03:03:577","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 06:03:03.577","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","202007","PL100052012","6330","3187318","Week I-0 (1)","7","Date of Visit","34958633","0","15 May 2026 06:00:43:633","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 06:00:43.633","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","202739","PL100052013","6330","3084271","Screening","3","Date of Visit","33992755","0","24 Apr 2026 06:05:11:900","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 06:05:11.900","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","205076","PL100052014","6330","3137342","Screening","3","Date of Visit","34732214","0","07 May 2026 11:26:18:737","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 11:26:18.737","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190931","PL100062001","6330","2836066","Screening","3","Date of Visit","30640271","0","04 Feb 2026 08:52:16:717","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 08:52:16.717","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2836411","Screening","3","Date of Visit","30645098","0","12 Jan 2026 11:24:39:423","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260112 11:24:39.423","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2898988","Week I-0 (1)","7","Date of Visit","31451240","0","28 Jan 2026 11:24:12:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 11:24:12.430","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2900494","Week I-2 (1)","8","Date of Visit","31470778","0","25 Feb 2026 08:15:32:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 08:15:32.897","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2956808","Week I-4 (1)","9","Date of Visit","32267620","0","03 Mar 2026 13:36:02:513","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 13:36:02.513","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","2974642","Week I-8 (1)","10","Date of Visit","32499937","0","01 Apr 2026 08:01:43:093","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 08:01:43.093","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190950","PL100062002","6330","3044550","Week I-12 (1)","11","Date of Visit","33435549","0","07 May 2026 07:47:05:923","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 07:47:05.923","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2848862","Screening","3","Date of Visit","30806263","0","04 Feb 2026 08:56:08:787","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 08:56:08.787","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2912658","Week I-0 (1)","7","Date of Visit","31625724","0","04 Feb 2026 09:59:48:507","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 09:59:48.507","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2914200","Week I-2 (1)","8","Date of Visit","31642596","0","25 Feb 2026 09:15:38:573","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 09:15:38.573","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2957010","Week I-4 (1)","9","Date of Visit","32270660","0","05 Mar 2026 13:53:18:053","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 13:53:18.053","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","2979926","Week I-8 (1)","10","Date of Visit","32565158","0","01 Apr 2026 08:23:28:747","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 08:23:28.747","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","191553","PL100062003","6330","3044624","Week I-12 (1)","11","Date of Visit","33436452","0","07 May 2026 08:42:48:467","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 08:42:48.467","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193344","PL100062004","6330","2888549","Screening","3","Date of Visit","31315247","0","06 May 2026 10:03:50:190","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 10:03:50.190","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193348","PL100062005","6330","2888626","Screening","3","Date of Visit","31316156","0","25 Feb 2026 09:43:01:723","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 09:43:01.723","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193348","PL100062005","6330","2974896","Week I-0 (1)","7","Date of Visit","32502858","0","05 Mar 2026 14:15:06:457","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 14:15:06.457","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193348","PL100062005","6330","2980046","Week I-2 (1)","8","Date of Visit","32567192","0","18 Mar 2026 14:04:24:070","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 14:04:24.070","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193348","PL100062005","6330","3017098","Week I-4 (1)","9","Date of Visit","33079822","0","01 Apr 2026 10:15:26:593","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 10:15:26.593","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193468","PL100062006","6330","2891146","Screening","3","Date of Visit","31346939","0","06 May 2026 10:10:18:357","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 10:10:18.357","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193832","PL100062007","6330","2899105","Screening","3","Date of Visit","31452517","0","06 May 2026 10:38:02:037","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 10:38:02.037","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195088","PL100062008","6330","2926920","Screening","3","Date of Visit","31822205","0","23 Mar 2026 13:44:35:917","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 13:44:35.917","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195088","PL100062008","6330","3014241","Week I-0 (1)","7","Date of Visit","33041951","0","24 Mar 2026 11:14:13:317","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 11:14:13.317","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195088","PL100062008","6330","3029273","Week I-2 (1)","8","Date of Visit","33229284","0","07 May 2026 10:20:16:890","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 10:20:16.890","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195088","PL100062008","6330","3136932","Week I-4 (1)","9","Date of Visit","34723865","0","07 May 2026 10:33:06:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 10:33:06.657","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195885","PL100062009","6330","2942006","Screening","3","Date of Visit","32051732","0","07 Apr 2026 11:38:16:933","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 11:38:16.933","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195885","PL100062009","6330","3029970","Week I-0 (1)","7","Date of Visit","33238109","0","07 May 2026 10:42:16:907","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 10:42:16.907","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195885","PL100062009","6330","3137034","Week I-2 (1)","8","Date of Visit","34725673","0","07 May 2026 10:51:45:167","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 10:51:45.167","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195885","PL100062009","6330","3137128","Week I-4 (1)","9","Date of Visit","34727547","0","07 May 2026 10:56:51:647","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 10:56:51.647","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195998","PL100062010","6330","2944615","Screening","3","Date of Visit","32085461","0","07 May 2026 12:14:41:460","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 12:14:41.460","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","196661","PL100062011","6330","2958236","Screening","3","Date of Visit","32291172","0","07 May 2026 12:44:22:947","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 12:44:22.947","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","196661","PL100062011","6330","3052100","Week I-0 (1)","7","Date of Visit","33533511","0","07 May 2026 13:23:00:140","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 13:23:00.140","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","196661","PL100062011","6330","3137709","Week I-2 (1)","8","Date of Visit","34737446","0","07 May 2026 13:41:08:877","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 13:41:08.877","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","196661","PL100062011","6330","3137724","Week I-4 (1)","9","Date of Visit","34737680","0","07 May 2026 13:43:23:740","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 13:43:23.740","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","198704","PL100062012","6330","3002073","Screening","3","Date of Visit","32878103","0","11 Mar 2026 16:19:39:903","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","11 MAR 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 16:19:39.903","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","201174","PL100062013","6330","3052042","Screening","3","Date of Visit","33532575","0","07 Apr 2026 13:58:17:977","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 13:58:17.977","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","202615","PL100062014","6330","3081481","Screening","3","Date of Visit","33955872","0","21 Apr 2026 14:27:33:577","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 14:27:33.577","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","203997","PL100062015","6330","3114125","Screening","3","Date of Visit","34351784","0","28 Apr 2026 08:48:09:477","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 08:48:09.477","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","204817","PL100062016","6330","3131940","Screening","3","Date of Visit","34633012","0","15 May 2026 07:49:40:143","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 07:49:40.143","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","2900890","Screening","3","Date of Visit","31475098","0","06 Feb 2026 14:38:00:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 14:38:00.587","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","2961159","Week I-0 (1)","7","Date of Visit","32330505","0","02 Mar 2026 11:37:21:337","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 11:37:21.337","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","2966773","Week I-2 (1)","8","Date of Visit","32385260","0","16 Mar 2026 11:14:12:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 11:14:12.213","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","3009752","Week I-4 (1)","9","Date of Visit","32981688","0","30 Mar 2026 13:42:26:603","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 13:42:26.603","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","3040821","Week I-8 (1)","10","Date of Visit","33383699","0","27 Apr 2026 11:18:46:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 11:18:46.700","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","193904","PL100071001","6330","3111868","Week I-12 (1)","11","Date of Visit","34319066","0","25 May 2026 08:35:26:023","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 08:35:26.023","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","201588","PL100071002","6330","3060118","Screening","3","Date of Visit","33633400","0","16 Apr 2026 09:09:07:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 09:09:07.843","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","201769","PL100071003","6330","3064206","Screening","3","Date of Visit","33687179","0","17 Apr 2026 09:44:28:257","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 09:44:28.257","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","201769","PL100071003","6330","3206971","Week I-0 (1)","7","Date of Visit","35234547","0","25 May 2026 09:48:02:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 09:48:02.700","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","2867989","Screening","3","Date of Visit","31065809","0","08 Jan 2026 15:29:42:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260108 15:29:42.157","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","2931616","Week I-0 (1)","7","Date of Visit","31892281","0","16 Feb 2026 11:57:51:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 11:57:51.817","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","2939471","Week I-2 (1)","8","Date of Visit","32016886","0","27 Feb 2026 10:43:08:073","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 10:43:08.073","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","2962979","Week I-4 (1)","9","Date of Visit","32352893","0","13 Mar 2026 12:22:19:493","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 12:22:19.493","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","3006795","Week I-8 (1)","10","Date of Visit","32944034","0","09 Apr 2026 12:59:07:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 12:59:07.210","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192370","PL100072001","6330","3057615","Week I-12 (1)","11","Date of Visit","33603602","0","12 May 2026 11:00:13:493","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 11:00:13.493","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","2868485","Screening","3","Date of Visit","31072072","0","14 Jan 2026 08:58:26:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260114 08:58:26.367","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","2932598","Week I-0 (1)","7","Date of Visit","31907978","0","17 Feb 2026 10:07:51:327","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 10:07:51.327","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","2940821","Week I-2 (1)","8","Date of Visit","32036090","0","27 Feb 2026 11:12:26:437","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 11:12:26.437","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","2963140","Week I-4 (1)","9","Date of Visit","32354353","0","13 Mar 2026 10:45:08:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 10:45:08.723","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","3006560","Week I-8 (1)","10","Date of Visit","32940821","0","09 Apr 2026 13:05:04:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 13:05:04.123","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192395","PL100072002","6330","3057654","Week I-12 (1)","11","Date of Visit","33603988","0","12 May 2026 08:19:06:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 08:19:06.897","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","2868583","Screening","3","Date of Visit","31073229","0","09 Jan 2026 12:12:20:827","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 12:12:20.827","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","2939589","Week I-0 (1)","7","Date of Visit","32018497","0","19 Feb 2026 21:11:48:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 21:11:48.560","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","2947661","Week I-2 (1)","8","Date of Visit","32128154","0","06 Mar 2026 09:21:05:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 09:21:05.667","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","2981548","Week I-4 (1)","9","Date of Visit","32587982","0","18 Mar 2026 11:36:18:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 11:36:18.790","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","3016538","Week I-8 (1)","10","Date of Visit","33072239","0","20 Apr 2026 11:11:36:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 11:11:36.950","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","192401","PL100072003","6330","3077638","Week I-12 (1)","11","Date of Visit","33894554","0","12 May 2026 12:20:23:063","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 12:20:23.063","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","2914349","Screening","3","Date of Visit","31644334","0","09 Feb 2026 12:35:55:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 12:35:55.307","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","3016105","Week I-0 (1)","7","Date of Visit","33066735","0","20 Mar 2026 09:53:51:347","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 09:53:51.347","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","3021802","Week I-2 (1)","8","Date of Visit","33133453","0","02 Apr 2026 07:08:52:690","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 07:08:52.690","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","3046550","Week I-4 (1)","9","Date of Visit","33464971","0","20 Apr 2026 10:50:04:183","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 10:50:04.183","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","194518","PL100072004","6330","3077449","Week I-8 (1)","10","Date of Visit","33891803","0","18 May 2026 06:56:10:983","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 06:56:10.983","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","2929444","Screening","3","Date of Visit","31856349","0","13 Feb 2026 09:44:28:683","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 09:44:28.683","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","3004548","Week I-0 (1)","7","Date of Visit","32912711","0","16 Mar 2026 13:31:45:790","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 13:31:45.790","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","3010121","Week I-2 (1)","8","Date of Visit","32987613","0","27 Mar 2026 09:01:06:147","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 09:01:06.147","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","3037723","Week I-4 (1)","9","Date of Visit","33344357","0","10 Apr 2026 09:32:49:567","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 09:32:49.567","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195215","PL100072005","6330","3059527","Week I-8 (1)","10","Date of Visit","33626914","0","07 May 2026 09:27:07:987","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 09:27:07.987","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","2929807","Screening","3","Date of Visit","31862287","0","13 Feb 2026 10:05:54:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 10:05:54.537","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","3003940","Week I-0 (1)","7","Date of Visit","32902951","0","21 May 2026 08:37:54:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 08:37:54.623","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","3009479","Week I-2 (1)","8","Date of Visit","32978202","0","30 Mar 2026 11:34:18:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 11:34:18.563","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","3040528","Week I-4 (1)","9","Date of Visit","33380285","0","10 Apr 2026 10:55:58:377","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 10:55:58.377","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195227","PL100072006","6330","3059763","Week I-8 (1)","10","Date of Visit","33629178","0","12 May 2026 12:08:09:450","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 12:08:09.450","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","2933179","Screening","3","Date of Visit","31917024","0","17 Feb 2026 14:52:00:130","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 14:52:00.130","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","3027864","Week I-0 (1)","7","Date of Visit","33212867","0","25 Mar 2026 11:34:07:283","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 11:34:07.283","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","3032366","Week I-2 (1)","8","Date of Visit","33272588","0","10 Apr 2026 08:46:27:477","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 08:46:27.477","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","3059335","Week I-4 (1)","9","Date of Visit","33625421","0","27 Apr 2026 11:36:39:673","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 11:36:39.673","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","195422","PL100072007","6330","3111937","Week I-8 (1)","10","Date of Visit","34319817","0","21 May 2026 09:35:47:083","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 09:35:47.083","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","2946370","Screening","3","Date of Visit","32108101","0","23 Feb 2026 13:17:13:173","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 13:17:13.173","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","3032741","Week I-0 (1)","7","Date of Visit","33275788","0","26 Mar 2026 13:39:50:320","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 13:39:50.320","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","3035995","Week I-2 (1)","8","Date of Visit","33319640","0","10 Apr 2026 09:40:14:927","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 09:40:14.927","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","3059552","Week I-4 (1)","9","Date of Visit","33627188","0","29 Apr 2026 09:57:56:827","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 09:57:56.827","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","196086","PL100072008","6330","3117188","Week I-8 (1)","10","Date of Visit","34402550","0","21 May 2026 09:36:29:367","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 09:36:29.367","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200282","PL100072009","6330","3035129","Screening","3","Date of Visit","33308188","0","22 Apr 2026 10:46:43:197","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 10:46:43.197","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200299","PL100072010","6330","3035433","Screening","3","Date of Visit","33311638","0","30 Mar 2026 10:13:39:310","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 10:13:39.310","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200299","PL100072010","6330","3133870","Week I-0 (1)","7","Date of Visit","34667815","0","07 May 2026 08:25:46:577","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 08:25:46.577","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200550","PL100072011","6330","3040118","Screening","3","Date of Visit","33375777","0","31 Mar 2026 09:47:17:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 09:47:17.843","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200550","PL100072011","6330","3137042","Week I-0 (1)","7","Date of Visit","34725882","0","12 May 2026 13:55:41:943","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 13:55:41.943","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200550","PL100072011","6330","3188791","Week I-2 (1)","8","Date of Visit","34980308","0","22 May 2026 08:00:38:253","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 08:00:38.253","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200727","PL100072012","6330","3042933","Screening","3","Date of Visit","33408104","0","02 Apr 2026 11:25:31:517","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 11:25:31.517","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200727","PL100072012","6330","3126494","Week I-0 (1)","7","Date of Visit","34539142","0","06 May 2026 08:48:44:467","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 08:48:44.467","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200727","PL100072012","6330","3133715","Week I-2 (1)","8","Date of Visit","34664508","0","21 May 2026 10:48:06:080","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 10:48:06.080","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200834","PL100072013","6330","3045116","Screening","3","Date of Visit","33442688","0","20 May 2026 12:23:06:230","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 12:23:06.230","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200929","PL100072014","6330","3047123","Screening","3","Date of Visit","33472348","0","03 Apr 2026 07:14:13:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 07:14:13.507","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200929","PL100072014","6330","3088358","Week I-0 (1)","7","Date of Visit","34060271","0","28 Apr 2026 11:30:32:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:30:32.783","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200929","PL100072014","6330","3114854","Week I-2 (1)","8","Date of Visit","34364605","0","07 May 2026 10:08:39:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 10:08:39.567","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200929","PL100072014","6330","3136852","Week I-4 (1)","9","Date of Visit","34723476","0","15 May 2026 11:17:35:173","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 11:17:35.173","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","201242","PL100072015","6330","3053643","Screening","3","Date of Visit","33556502","0","13 Apr 2026 09:44:06:607","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 09:44:06.607","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","201242","PL100072015","6330","3133710","Week I-0 (1)","7","Date of Visit","34664415","0","07 May 2026 06:59:44:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 06:59:44.417","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202447","PL100072016","6330","3077815","Screening","3","Date of Visit","33900162","0","22 Apr 2026 12:09:40:597","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 12:09:40.597","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202749","PL100072017","6330","3084511","Screening","3","Date of Visit","33995850","0","27 Apr 2026 07:26:55:233","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 07:26:55.233","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202749","PL100072017","6330","3194390","Week I-0 (1)","7","Date of Visit","35060712","0","19 May 2026 08:54:10:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 08:54:10.353","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202775","PL100072018","6330","3085087","Screening","3","Date of Visit","34011924","0","27 Apr 2026 07:45:09:360","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 07:45:09.360","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202775","PL100072018","6330","3203437","Week I-0 (1)","7","Date of Visit","35190238","0","22 May 2026 10:52:12:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 10:52:12.833","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202939","PL100072019","6330","3088965","Screening","3","Date of Visit","34072298","0","27 Apr 2026 10:18:55:097","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 10:18:55.097","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","202941","PL100072020","6330","3089004","Screening","3","Date of Visit","34072730","0","23 Apr 2026 20:22:24:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 20:22:24.617","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","203840","PL100072021","6330","3111391","Screening","3","Date of Visit","34312783","0","29 Apr 2026 10:15:01:847","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 10:15:01.847","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","204806","PL100072022","6330","3131778","Screening","3","Date of Visit","34630512","0","14 May 2026 11:02:59:360","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 11:02:59.360","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","191226","PL100082001","6330","2842097","Screening","3","Date of Visit","30711643","0","13 Jan 2026 13:48:21:777","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260113 13:48:21.777","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","2879501","Screening","3","Date of Visit","31206605","0","21 Jan 2026 09:40:27:740","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 09:40:27.740","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","2939096","Week I-0 (1)","7","Date of Visit","32011046","0","17 Feb 2026 13:05:54:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 13:05:54.090","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","2941351","Week I-2 (1)","8","Date of Visit","32044212","0","03 Mar 2026 10:32:55:967","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 10:32:55.967","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","2941358","Week I-4 (1)","9","Date of Visit","32044294","0","20 Mar 2026 09:59:01:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 09:59:01.730","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","3021832","Week I-8 (1)","10","Date of Visit","33133955","0","29 Apr 2026 09:05:24:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 09:05:24.987","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","192892","PL100082002","6330","3067212","Week I-12 (1)","11","Date of Visit","33729693","0","22 May 2026 12:17:38:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:17:38.570","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","194026","PL100082003","6330","2903860","Screening","3","Date of Visit","31516217","0","05 May 2026 10:06:34:563","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 10:06:34.563","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","197064","PL100082004","6330","2966379","Screening","3","Date of Visit","32381435","0","17 Apr 2026 07:44:09:117","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 07:44:09.117","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","194330","PL100092001","6330","2910214","Screening","3","Date of Visit","31591275","0","24 Feb 2026 05:04:11:607","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 05:04:11.607","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","195047","PL100092002","6330","2925663","Screening","3","Date of Visit","31802769","0","24 Feb 2026 05:07:23:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 05:07:23.210","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","195047","PL100092002","6330","3028073","Week I-0 (1)","7","Date of Visit","33215314","0","07 Apr 2026 10:36:46:390","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 10:36:46.390","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","195047","PL100092002","6330","3051455","Week I-2 (1)","8","Date of Visit","33525334","0","07 Apr 2026 10:41:44:950","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 10:41:44.950","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","195047","PL100092002","6330","3051470","Week I-4 (1)","9","Date of Visit","33525505","0","07 May 2026 12:30:53:940","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 12:30:53.940","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","196429","PL100092003","6330","2953528","Screening","3","Date of Visit","32213033","0","07 May 2026 08:33:15:187","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 08:33:15.187","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","198383","PL100092004","6330","2996166","Screening","3","Date of Visit","32799930","0","07 Apr 2026 11:27:52:377","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 11:27:52.377","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","198383","PL100092004","6330","3050927","Week I-0 (1)","7","Date of Visit","33518028","0","07 Apr 2026 12:14:11:413","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 12:14:11.413","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","198383","PL100092004","6330","3051744","Week I-2 (1)","8","Date of Visit","33528685","0","07 May 2026 13:02:11:407","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 13:02:11.407","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","198383","PL100092004","6330","3137651","Week I-4 (1)","9","Date of Visit","34736748","0","07 May 2026 13:04:36:617","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 13:04:36.617","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","200701","PL100092005","6330","3042180","Screening","3","Date of Visit","33400530","0","08 Apr 2026 06:38:02:730","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 06:38:02.730","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","200701","PL100092005","6330","3129875","Week I-0 (1)","7","Date of Visit","34595497","0","07 May 2026 08:35:07:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 08:35:07.180","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","2865796","Screening","3","Date of Visit","31038367","0","11 Jan 2026 12:52:55:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260111 12:52:55.407","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","2940722","Week I-0 (1)","7","Date of Visit","32034984","0","19 Feb 2026 10:54:39:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 10:54:39.037","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","2946414","Week I-2 (1)","8","Date of Visit","32108755","0","08 Mar 2026 12:10:05:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260308 12:10:05.920","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","2989046","Week I-4 (1)","9","Date of Visit","32697893","0","18 Mar 2026 12:25:07:383","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 12:25:07.383","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","3016733","Week I-8 (1)","10","Date of Visit","33074844","0","14 Apr 2026 08:58:08:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 08:58:08.720","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192273","PL100102001","6330","3064365","Week I-12 (1)","11","Date of Visit","33689393","0","15 May 2026 10:30:33:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 10:30:33.437","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192780","PL100102002","6330","2876976","Screening","3","Date of Visit","31175854","0","19 Mar 2026 12:47:01:617","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 12:47:01.617","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","2884896","Screening","3","Date of Visit","31273044","0","22 Jan 2026 12:21:39:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 12:21:39.100","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","2940818","Week I-0 (1)","7","Date of Visit","32036008","0","19 Feb 2026 13:28:56:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 13:28:56.710","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","2946809","Week I-2 (1)","8","Date of Visit","32115696","0","08 Mar 2026 12:18:43:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260308 12:18:43.527","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","2989058","Week I-4 (1)","9","Date of Visit","32697948","0","18 Mar 2026 12:44:22:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 12:44:22.127","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","3016816","Week I-8 (1)","10","Date of Visit","33075915","0","14 Apr 2026 09:01:58:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 09:01:58.210","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","193145","PL100102003","6330","3064397","Week I-12 (1)","11","Date of Visit","33689732","0","15 May 2026 15:17:13:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 15:17:13.310","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","2910917","Screening","3","Date of Visit","31597580","0","06 Feb 2026 10:22:23:530","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 10:22:23.530","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","3006252","Week I-0 (1)","7","Date of Visit","32936048","0","18 Mar 2026 12:53:04:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 12:53:04.227","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","3016839","Week I-2 (1)","8","Date of Visit","33076252","0","26 Mar 2026 12:10:15:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 12:10:15.937","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","3035785","Week I-4 (1)","9","Date of Visit","33316416","0","08 Apr 2026 09:24:23:633","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 09:24:23.633","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194362","PL100102004","6330","3053664","Week I-8 (1)","10","Date of Visit","33556946","0","09 May 2026 19:47:55:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260509 19:47:55.047","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","2914483","Screening","3","Date of Visit","31645441","0","06 Feb 2026 10:39:30:810","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 10:39:30.810","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","3006414","Week I-0 (1)","7","Date of Visit","32938482","0","18 Mar 2026 13:55:47:533","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 13:55:47.533","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","3017067","Week I-2 (1)","8","Date of Visit","33079211","0","27 Mar 2026 10:29:37:863","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 10:29:37.863","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","3037960","Week I-4 (1)","9","Date of Visit","33348278","0","10 Apr 2026 10:15:54:843","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 10:15:54.843","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194525","PL100102005","6330","3059652","Week I-8 (1)","10","Date of Visit","33628093","0","09 May 2026 19:49:32:857","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260509 19:49:32.857","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194922","PL100102006","6330","2923110","Screening","3","Date of Visit","31766136","0","20 Mar 2026 13:26:04:680","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 13:26:04.680","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","197099","PL100102007","6330","2967029","Screening","3","Date of Visit","32388689","0","22 May 2026 12:27:52:767","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:27:52.767","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","197099","PL100102007","6330","3052829","Week I-0 (1)","7","Date of Visit","33544738","0","09 Apr 2026 08:36:55:310","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 08:36:55.310","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","197099","PL100102007","6330","3056693","Week I-2 (1)","8","Date of Visit","33593540","0","22 Apr 2026 10:28:08:657","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 10:28:08.657","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","197099","PL100102007","6330","3083924","Week I-4 (1)","9","Date of Visit","33988305","0","09 May 2026 19:50:24:403","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260509 19:50:24.403","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","199014","PL100102008","6330","3009071","Screening","3","Date of Visit","32971740","0","18 Mar 2026 14:22:18:217","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 14:22:18.217","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","199014","PL100102008","6330","3064420","Week I-0 (1)","7","Date of Visit","33690136","0","17 Apr 2026 08:15:45:030","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 08:15:45.030","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","199014","PL100102008","6330","3073311","Week I-2 (1)","8","Date of Visit","33831637","0","30 Apr 2026 07:10:32:200","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:10:32.200","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","199014","PL100102008","6330","3120022","Week I-4 (1)","9","Date of Visit","34461353","0","13 May 2026 13:18:55:083","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 13:18:55.083","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193049","PL100122001","6330","2883048","Screening","3","Date of Visit","31248858","0","11 Feb 2026 11:11:26:790","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 11:11:26.790","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","2883076","Screening","3","Date of Visit","31249153","0","20 Jan 2026 10:33:46:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 10:33:46.230","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","2939233","Week I-0 (1)","7","Date of Visit","32012964","0","18 Feb 2026 08:37:46:547","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260218 08:37:46.547","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","2943655","Week I-2 (1)","8","Date of Visit","32072834","0","04 Mar 2026 12:34:34:393","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 12:34:34.393","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","2976902","Week I-4 (1)","9","Date of Visit","32528624","0","17 Mar 2026 11:26:58:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 11:26:58.447","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","3013367","Week I-8 (1)","10","Date of Visit","33030208","0","17 Apr 2026 08:15:09:843","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 08:15:09.843","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193051","PL100122002","6330","3073310","Week I-12 (1)","11","Date of Visit","33831609","0","14 May 2026 12:27:51:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 12:27:51.787","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","2916447","Screening","3","Date of Visit","31671176","0","13 Apr 2026 07:30:35:727","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 07:30:35.727","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","2989904","Week I-0 (1)","7","Date of Visit","32709768","0","12 Mar 2026 11:42:22:793","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 11:42:22.793","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","3004039","Week I-2 (1)","8","Date of Visit","32904110","0","26 Mar 2026 09:07:02:407","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 09:07:02.407","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","3035101","Week I-4 (1)","9","Date of Visit","33307871","0","07 Apr 2026 10:39:54:910","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 10:39:54.910","","" +"POL","9894","DD5-PL10012","ETG Zamosc","194626","PL100122003","6330","3051466","Week I-8 (1)","10","Date of Visit","33525437","0","05 May 2026 10:01:00:310","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 10:01:00.310","","" +"POL","9894","DD5-PL10012","ETG Zamosc","199767","PL100122004","6330","3024868","Screening","3","Date of Visit","33173023","0","28 Apr 2026 08:18:36:727","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 08:18:36.727","","" +"POL","9894","DD5-PL10012","ETG Zamosc","200415","PL100122005","6330","3037539","Screening","3","Date of Visit","33342393","0","08 Apr 2026 09:15:11:450","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 09:15:11.450","","" +"POL","9894","DD5-PL10012","ETG Zamosc","200415","PL100122005","6330","3120071","Week I-0 (1)","7","Date of Visit","34462034","0","08 May 2026 10:01:11:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 10:01:11.307","","" +"POL","9894","DD5-PL10012","ETG Zamosc","200415","PL100122005","6330","3167484","Week I-2 (1)","8","Date of Visit","34820807","0","15 May 2026 11:17:48:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 11:17:48.550","","" +"POL","9894","DD5-PL10012","ETG Zamosc","205012","PL100122006","6330","3136138","Screening","3","Date of Visit","34711077","0","07 May 2026 08:03:18:140","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 08:03:18.140","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","2866295","Screening","3","Date of Visit","31044293","0","21 Jan 2026 08:33:40:890","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 08:33:40.890","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","2933071","Week I-0 (1)","7","Date of Visit","31915264","0","13 Feb 2026 13:33:06:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 13:33:06.010","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","2937217","Week I-2 (1)","8","Date of Visit","31983577","0","24 Feb 2026 13:59:25:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 13:59:25.557","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","2955292","Week I-4 (1)","9","Date of Visit","32244445","0","13 Mar 2026 07:50:31:943","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 07:50:31.943","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","3005938","Week I-8 (1)","10","Date of Visit","32931092","0","20 Apr 2026 09:54:14:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 09:54:14.230","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192299","PL100132001","6330","3077233","Week I-12 (1)","11","Date of Visit","33886952","0","07 May 2026 12:02:11:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 12:02:11.593","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","2866345","Screening","3","Date of Visit","31044937","0","22 Jan 2026 08:32:10:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 08:32:10.053","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","2941443","Week I-0 (1)","7","Date of Visit","32045139","0","24 Feb 2026 12:33:29:060","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 12:33:29.060","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","2954999","Week I-2 (1)","8","Date of Visit","32239604","0","05 Mar 2026 07:44:29:070","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 07:44:29.070","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","2978403","Week I-4 (1)","9","Date of Visit","32547160","0","24 Mar 2026 14:45:36:753","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 14:45:36.753","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192301","PL100132002","6330","3029951","Week I-8 (1)","10","Date of Visit","33237885","0","10 Apr 2026 07:15:08:920","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 07:15:08.920","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192416","PL100132003","6330","2868839","Screening","3","Date of Visit","31076197","0","21 Jan 2026 08:39:26:537","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260121 08:39:26.537","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192693","PL100132004","6330","2874888","Screening","3","Date of Visit","31149479","0","11 Feb 2026 11:58:30:447","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 11:58:30.447","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192693","PL100132004","6330","2949300","Unscheduled 20260209","59","Date of Visit","32148431","0","20 Feb 2026 14:05:32:447","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","09 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","STOOL CULTURE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260220 14:05:32.447","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192716","PL100132005","6330","2875565","Screening","3","Date of Visit","31157494","0","11 Feb 2026 12:00:36:580","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 12:00:36.580","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","2878035","Screening","3","Date of Visit","31187618","0","12 Mar 2026 11:06:27:990","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 11:06:27.990","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","2957818","Week I-0 (1)","7","Date of Visit","32284923","0","12 Mar 2026 11:06:28:033","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 11:06:28.033","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","2968700","Week I-2 (1)","8","Date of Visit","32413553","0","17 Mar 2026 08:00:59:150","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 08:00:59.150","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","3011852","Week I-4 (1)","9","Date of Visit","33009351","0","30 Mar 2026 08:09:13:877","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 08:09:13.877","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192830","PL100132006","6330","3039831","Week I-8 (1)","10","Date of Visit","33371918","0","29 Apr 2026 12:07:04:890","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 12:07:04.890","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","2900921","Screening","3","Date of Visit","31475490","0","03 Feb 2026 14:06:46:370","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 14:06:46.370","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","2994651","Week I-0 (1)","7","Date of Visit","32778397","0","11 Mar 2026 16:04:58:840","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 16:04:58.840","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","3002014","Week I-2 (1)","8","Date of Visit","32877668","0","26 Mar 2026 08:06:19:827","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 08:06:19.827","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","3034851","Week I-4 (1)","9","Date of Visit","33304527","0","10 Apr 2026 10:28:51:347","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 10:28:51.347","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","193906","PL100132007","6330","3059690","Week I-8 (1)","10","Date of Visit","33628493","0","14 May 2026 07:14:49:820","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 07:14:49.820","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","195424","PL100132008","6330","2933231","Screening","3","Date of Visit","31917797","0","16 Feb 2026 13:45:05:597","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 13:45:05.597","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","195424","PL100132008","6330","3032964","Week I-0 (1)","7","Date of Visit","33278743","0","30 Mar 2026 11:47:25:813","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 11:47:25.813","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","195424","PL100132008","6330","3040572","Week I-2 (1)","8","Date of Visit","33380556","0","10 Apr 2026 11:23:17:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 11:23:17.730","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","195424","PL100132008","6330","3059830","Week I-4 (1)","9","Date of Visit","33629949","0","29 Apr 2026 12:21:55:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 12:21:55.870","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","196332","PL100132009","6330","2951620","Screening","3","Date of Visit","32181852","0","13 Mar 2026 08:45:29:070","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 08:45:29.070","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","198671","PL100132010","6330","3001449","Screening","3","Date of Visit","32869750","0","07 Apr 2026 09:11:35:810","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 09:11:35.810","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","200167","PL100132011","6330","3032843","Screening","3","Date of Visit","33277326","0","01 Apr 2026 12:37:37:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 12:37:37.407","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","200167","PL100132011","6330","3130137","Week I-0 (1)","7","Date of Visit","34598646","0","11 May 2026 08:58:02:807","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 08:58:02.807","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","200167","PL100132011","6330","3181969","Week I-2 (1)","8","Date of Visit","34890202","0","25 May 2026 06:23:42:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 06:23:42.870","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","201926","PL100132012","6330","3067746","Screening","3","Date of Visit","33742303","0","20 Apr 2026 06:40:14:517","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 06:40:14.517","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","201926","PL100132012","6330","3134583","Week I-0 (1)","7","Date of Visit","34681919","0","11 May 2026 09:05:09:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 09:05:09.787","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","201926","PL100132012","6330","3181986","Week I-2 (1)","8","Date of Visit","34890371","0","25 May 2026 06:49:52:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 06:49:52.207","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","203881","PL100132013","6330","3112180","Screening","3","Date of Visit","34322695","0","29 Apr 2026 12:30:38:567","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 12:30:38.567","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","211211","PL100132014","6330","3201454","Screening","3","Date of Visit","35164004","0","21 May 2026 14:19:10:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 14:19:10.553","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191557","PL100142001","6330","2849152","Screening","3","Date of Visit","30810713","0","19 Jan 2026 07:42:25:703","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 07:42:25.703","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191557","PL100142001","6330","2858142","Unscheduled 20251229","59","Date of Visit","30943296","0","30 Dec 2025 08:44:00:020","No Forms","SDVTier","","Did this visit occur?","","Subjects Status","29 DEC 2025","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT: THE INVESTIGATOR CALLED TO INFORM THE PATIENT THAT THE PATIENT HAS A CAMPYLOBACTER JEJUNI INFECTION AND RECOMMENDED ANTIBIOTIC TREATMENT.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251230 08:44:00.020","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191857","PL100142002","6330","2856940","Screening","3","Date of Visit","30927258","0","19 Jan 2026 07:41:43:437","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260119 07:41:43.437","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2900224","Screening","3","Date of Visit","31467747","0","03 Feb 2026 13:36:45:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 13:36:45.417","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2956913","Week I-0 (1)","7","Date of Visit","32269405","0","03 Mar 2026 09:16:33:957","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 09:16:33.957","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2969605","Week I-2 (1)","8","Date of Visit","32428899","0","12 Mar 2026 13:22:19:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 13:22:19.210","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","3004376","Week I-4 (1)","9","Date of Visit","32910513","0","26 Mar 2026 07:41:20:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 07:41:20.727","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","3034773","Week I-8 (1)","10","Date of Visit","33303709","0","22 Apr 2026 07:27:24:993","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 07:27:24.993","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2910851","Unscheduled 20260130","59","Date of Visit","31596876","0","03 Feb 2026 13:36:45:433","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","30 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","TELEPHONE CONTACT OF THE INVESTIGATOR WITH THE PATIENT. THE PATIENT WAS INFORMED ABOUT AN INCONCLUSIVE RESULT REGARDING THE PRESENCE OF THE HBV VIRUS, AND A REPEAT HBV DNA TEST HAS BEEN SCHEDULED.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 13:36:45.433","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2912499","Unscheduled 20260203","59","Date of Visit","31624418","0","03 Feb 2026 13:54:01:783","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","03 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED VISIT TO THE STUDY SITE FOR HBV DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 13:54:01.783","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","2946637","Unscheduled 20260218","59","Date of Visit","32112001","0","19 Feb 2026 12:27:54:430","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","18 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE INVESTIGATOR CALLED THE PATIENT TO CLARIFY MISSING DATA IN THE CLARIO DIARY.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 12:27:54.430","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193877","PL100142003","6330","3057375","Unscheduled 20260409","59","Date of Visit","33601163","0","09 Apr 2026 11:56:25:220","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE STUDY COORDINATOR CONTACTED THE PARTICIPANT TO REQUEST THE COMPLETION OF PENDING QUESTIONNAIRES AFTER THE CLARIO EDIARY TECHNICAL FAILURE WAS RESOLVED","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 11:56:25.220","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193963","PL100142004","6330","2902399","Screening","3","Date of Visit","31492412","0","03 Mar 2026 07:34:10:683","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 07:34:10.683","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","2923222","Screening","3","Date of Visit","31767599","0","16 Feb 2026 13:27:16:733","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 13:27:16.733","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","2976346","Week I-0 (1)","7","Date of Visit","32522190","0","06 Mar 2026 08:59:07:203","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 08:59:07.203","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","2981475","Week I-2 (1)","8","Date of Visit","32586773","0","20 Mar 2026 08:14:51:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 08:14:51.790","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","3021319","Week I-4 (1)","9","Date of Visit","33129756","0","01 Apr 2026 08:14:17:487","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 08:14:17.487","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","3044595","Week I-8 (1)","10","Date of Visit","33436089","0","28 Apr 2026 11:35:28:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:35:28.237","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","2977224","Unscheduled 20260227","59","Date of Visit","32532302","0","04 Mar 2026 14:29:02:830","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","27 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT DUE TO MISSING ENTRIES IN THE CLARIO E-DIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 14:29:02.830","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","3057402","Unscheduled 20260409","59","Date of Visit","33601502","0","09 Apr 2026 12:05:08:757","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 12:05:08.757","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194927","PL100142005","6330","3062018","Unscheduled 20260319","59","Date of Visit","33656972","0","13 Apr 2026 11:31:55:573","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTION AT VISIT 3","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 11:31:55.573","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","2923537","Screening","3","Date of Visit","31773086","0","16 Feb 2026 13:21:52:260","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 13:21:52.260","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3000180","Week I-0 (1)","7","Date of Visit","32851672","0","12 Mar 2026 09:00:00:307","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 09:00:00.307","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3003493","Week I-2 (1)","8","Date of Visit","32896276","0","26 Mar 2026 13:12:06:900","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 13:12:06.900","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3035955","Week I-4 (1)","9","Date of Visit","33318744","0","08 Apr 2026 11:16:21:023","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 11:16:21.023","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3054165","Week I-8 (1)","10","Date of Visit","33562569","0","11 May 2026 12:03:30:427","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 12:03:30.427","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","2977216","Unscheduled 20260302","59","Date of Visit","32532238","0","04 Mar 2026 14:25:17:847","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","02 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT DUE TO MISSING ENTRIES IN THE CLARIO E-DIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 14:25:17.847","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194941","PL100142006","6330","3057416","Unscheduled 20260409","59","Date of Visit","33601650","0","09 Apr 2026 12:08:17:880","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 12:08:17.880","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","2923601","Screening","3","Date of Visit","31773457","0","16 Feb 2026 13:33:20:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 13:33:20.157","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3000951","Week I-0 (1)","7","Date of Visit","32864058","0","12 Mar 2026 09:23:00:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 09:23:00.683","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3003620","Week I-2 (1)","8","Date of Visit","32897650","0","26 Mar 2026 07:27:34:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 07:27:34.613","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3034743","Week I-4 (1)","9","Date of Visit","33303018","0","08 Apr 2026 13:37:35:630","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 13:37:35.630","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3054928","Week I-8 (1)","10","Date of Visit","33570922","0","11 May 2026 12:07:59:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 12:07:59.407","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","2977190","Unscheduled 20260302","59","Date of Visit","32531916","0","04 Mar 2026 14:21:09:223","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","02 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT DUE TO SPORADIC MISSING ENTRIES IN THE CLARIO E-DIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 14:21:09.223","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3057428","Unscheduled 20260409","59","Date of Visit","33601713","0","09 Apr 2026 12:13:21:537","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 12:13:21.537","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","194943","PL100142007","6330","3062058","Unscheduled 20260325","59","Date of Visit","33657499","0","13 Apr 2026 11:44:40:460","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","25 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA COLLECTION AT V3","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 11:44:40.460","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","196096","PL100142008","6330","2946602","Screening","3","Date of Visit","32111268","0","26 Mar 2026 13:01:13:693","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 13:01:13.693","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2967493","Screening","3","Date of Visit","32397753","0","16 Mar 2026 09:07:49:053","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 09:07:49.053","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3032554","Week I-0 (1)","7","Date of Visit","33274584","0","26 Mar 2026 10:35:30:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 10:35:30.830","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3035392","Week I-2 (1)","8","Date of Visit","33311451","0","09 Apr 2026 10:27:21:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 10:27:21.367","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3057131","Week I-4 (1)","9","Date of Visit","33598506","0","22 Apr 2026 12:35:26:423","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 12:35:26.423","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3084716","Week I-8 (1)","10","Date of Visit","33998982","0","19 May 2026 07:12:44:057","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 07:12:44.057","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2998005","Unscheduled 20260305","59","Date of Visit","32824033","0","16 Mar 2026 09:07:49:073","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","05 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED PHONE CALL PERFORMED TO SCHEDULE THE SUBJECT FOR AN ADDITIONAL HBV DNA RE-TEST AT THE SITE.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 09:07:49.073","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2998014","Unscheduled 20260306","59","Date of Visit","32824259","0","16 Mar 2026 09:07:49:087","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","06 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED VISIT: HBV DNA BLOOD DRAW PERFORMED.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 09:07:49.087","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2998024","Unscheduled 20260309","59","Date of Visit","32824367","0","16 Mar 2026 09:07:49:100","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE CONTACT. THE INVESTIGATOR CALLED THE SUBJECT TO REQUEST AN ON-SITE VISIT FOR A QUANTIFERON-TB GOLD RE-TEST.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 09:07:49.100","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","2998036","Unscheduled 20260309","59","Date of Visit","32824721","0","16 Mar 2026 09:07:49:113","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","THE SUBJECT ATTENDED THE SITE FOR A QUANTIFERON-TB GOLD RE-TEST.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 09:07:49.113","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3021336","Unscheduled 20260319","59","Date of Visit","33130087","0","20 Mar 2026 08:28:47:500","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","19 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE INVESTIGATOR CONTACTED THE SUBJECT TO FOLLOW UP ON THE MISSING UC-PRO QUESTIONNAIRE ENTRIES","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 08:28:47.500","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3057304","Unscheduled 20260408","59","Date of Visit","33600372","0","09 Apr 2026 11:29:06:233","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","08 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED PHONE CALL INITIATED BY THE SUBJECT REGARDING TECHNICAL DIFFICULTIES WITH THE CLARIO DEVICE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 11:29:06.233","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197119","PL100142009","6330","3197036","Unscheduled 20260515","59","Date of Visit","35100760","0","15 May 2026 14:59:10:287","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","15 MAY 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED PHONE VISIT. REVIEW OF THE PATIENT'S RESPIRATORY HEALTH STATUS.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 14:59:10.287","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","2974575","Screening","3","Date of Visit","32499407","0","16 Mar 2026 09:18:41:710","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 09:18:41.710","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","3044309","Week I-0 (1)","7","Date of Visit","33431292","0","01 Apr 2026 09:20:21:387","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 09:20:21.387","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","3044725","Week I-2 (1)","8","Date of Visit","33438197","0","15 Apr 2026 10:43:25:773","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 10:43:25.773","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","3067163","Week I-4 (1)","9","Date of Visit","33728231","0","28 Apr 2026 11:26:33:507","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:26:33.507","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","197436","PL100142010","6330","3057344","Unscheduled 20260409","59","Date of Visit","33600720","0","09 Apr 2026 11:37:32:873","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED PHONE CALL INITIATED BY THE SUBJECT REGARDING TECHNICAL DIFFICULTIES WITH THE CLARIO DEVICE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 11:37:32.873","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3043181","Screening","3","Date of Visit","33411145","0","10 Apr 2026 08:50:05:640","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 08:50:05.640","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3090271","Week I-0 (1)","7","Date of Visit","34091603","0","28 Apr 2026 11:04:51:080","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:04:51.080","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3114783","Week I-2 (1)","8","Date of Visit","34363804","0","11 May 2026 12:21:21:610","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 12:21:21.610","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3185463","Week I-4 (1)","9","Date of Visit","34929997","0","22 May 2026 12:50:52:047","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:50:52.047","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200739","PL100142011","6330","3057361","Unscheduled 20260409","59","Date of Visit","33600992","0","10 Apr 2026 08:50:05:660","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 08:50:05.660","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200820","PL100142012","6330","3044885","Screening","3","Date of Visit","33440531","0","08 Apr 2026 13:20:54:533","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 13:20:54.533","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200820","PL100142012","6330","3117368","Week I-0 (1)","7","Date of Visit","34404365","0","30 Apr 2026 08:18:22:327","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 08:18:22.327","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200820","PL100142012","6330","3120198","Week I-2 (1)","8","Date of Visit","34463680","0","14 May 2026 06:24:26:900","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 06:24:26.900","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","200820","PL100142012","6330","3057368","Unscheduled 20260409","59","Date of Visit","33601091","0","09 Apr 2026 11:50:02:950","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","09 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","UNSCHEDULED TELEPHONE VISIT. THE PARTICIPANT CONTACTED THE SITE COORDINATOR TO REPORT TECHNICAL ISSUES WITH THE CLARIO EDIARY","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 11:50:02.950","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","202611","PL100142013","6330","3081401","Screening","3","Date of Visit","33954902","0","30 Apr 2026 11:55:51:943","Tier 5","SDVTier","Yes","Did this visit occur?","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 11:55:51.943","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","203906","PL100142014","6330","3112602","Screening","3","Date of Visit","34328860","0","30 Apr 2026 08:06:00:547","Tier 1","SDVTier","Yes","Did this visit occur?","","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 08:06:00.547","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","204045","PL100142015","6330","3114920","Screening","3","Date of Visit","34365456","0","30 Apr 2026 07:53:07:887","Tier 5","SDVTier","Yes","Did this visit occur?","","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:53:07.887","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","2929866","Screening","3","Date of Visit","31863009","0","10 Mar 2026 17:40:20:167","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 17:40:20.167","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3030201","Week I-0 (1)","7","Date of Visit","33241904","0","26 Mar 2026 13:14:17:030","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 13:14:17.030","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3035960","Week I-2 (1)","8","Date of Visit","33319098","0","10 Apr 2026 09:58:05:363","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 09:58:05.363","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3059585","Week I-4 (1)","9","Date of Visit","33627533","0","23 Apr 2026 14:00:29:423","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 14:00:29.423","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3089197","Week I-8 (1)","10","Date of Visit","34077093","0","20 May 2026 08:29:42:903","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","SUBJECT WITHDRAWAL","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 08:29:42.903","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","3203042","Induction Early Discontinuation (1)","12","Date of Visit","35185442","0","21 May 2026 11:08:35:400","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT REFUSED","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 11:08:35.400","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","2998397","Screening","3","Date of Visit","32830577","0","10 Mar 2026 17:42:14:957","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 17:42:14.957","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","3052137","Week I-0 (1)","7","Date of Visit","33534015","0","10 Apr 2026 12:27:29:197","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 12:27:29.197","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","3059971","Week I-2 (1)","8","Date of Visit","33631721","0","13 May 2026 09:21:48:703","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT WITHDRAWN FROM THE STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 09:21:48.703","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","3191023","Induction Early Discontinuation (1)","12","Date of Visit","35010271","0","13 May 2026 09:22:33:077","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","THE PATIENT REFUSED TO COME TO THE APPOINTMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 09:22:33.077","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198508","PL100152003","6330","2998469","Screening","3","Date of Visit","32831186","0","10 Apr 2026 12:03:45:233","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 12:03:45.233","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","199264","PL100152004","6330","3014416","Screening","3","Date of Visit","33044250","0","30 Apr 2026 10:38:38:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 10:38:38.677","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","199264","PL100152004","6330","3115894","Week I-0 (1)","7","Date of Visit","34382977","0","30 Apr 2026 11:36:32:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 11:36:32.857","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","199264","PL100152004","6330","3124621","Week I-2 (1)","8","Date of Visit","34511777","0","15 May 2026 10:35:12:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 10:35:12.127","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","200751","PL100152005","6330","3043409","Screening","3","Date of Visit","33414098","0","30 Apr 2026 12:11:01:043","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 12:11:01.043","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","200751","PL100152005","6330","3115914","Week I-0 (1)","7","Date of Visit","34383373","0","30 Apr 2026 12:25:10:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 12:25:10.030","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","200751","PL100152005","6330","3124748","Week I-2 (1)","8","Date of Visit","34513534","0","15 May 2026 10:08:32:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 10:08:32.647","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","201178","PL100152006","6330","3052152","Screening","3","Date of Visit","33534148","0","07 May 2026 06:25:03:693","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 06:25:03.693","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","201178","PL100152006","6330","3132118","Week I-0 (1)","7","Date of Visit","34635207","0","07 May 2026 07:00:41:143","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 07:00:41.143","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","201178","PL100152006","6330","3135942","Week I-2 (1)","8","Date of Visit","34708082","0","20 May 2026 10:08:47:357","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 10:08:47.357","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","202786","PL100152007","6330","3085454","Screening","3","Date of Visit","34015337","0","20 May 2026 08:34:32:170","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 08:34:32.170","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","190715","PL100162001","6330","2832042","Screening","3","Date of Visit","30584747","0","16 Jan 2026 12:33:02:743","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260116 12:33:02.743","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2848013","Screening","3","Date of Visit","30791962","0","09 Jan 2026 11:21:19:003","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 11:21:19.003","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2872522","Week I-0 (1)","7","Date of Visit","31118978","0","12 Jan 2026 13:04:55:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260112 13:04:55.647","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2872869","Week I-2 (1)","8","Date of Visit","31123948","0","30 Jan 2026 07:09:17:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260130 07:09:17.053","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2905739","Week I-4 (1)","9","Date of Visit","31534720","0","04 Feb 2026 11:41:37:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 11:41:37.803","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2914537","Week I-8 (1)","10","Date of Visit","31646250","0","04 Mar 2026 11:56:55:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 11:56:55.960","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","2976739","Week I-12 (1)","11","Date of Visit","32527262","0","09 Apr 2026 09:04:43:833","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 09:04:43.833","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","191518","PL100162002","6330","3046742","Week M-4 (1)","15","Date of Visit","33467801","0","05 May 2026 11:18:04:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 11:18:04.593","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192592","PL100162003","6330","2872548","Screening","3","Date of Visit","31119254","0","24 Feb 2026 12:21:27:767","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 12:21:27.767","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2872629","Screening","3","Date of Visit","31120350","0","12 Feb 2026 10:46:43:013","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 10:46:43.013","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2898001","Week I-0 (1)","7","Date of Visit","31439192","0","28 Jan 2026 10:46:08:183","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 10:46:08.183","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2900347","Week I-2 (1)","8","Date of Visit","31469420","0","11 Feb 2026 08:54:54:993","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 08:54:54.993","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2928798","Week I-4 (1)","9","Date of Visit","31847049","0","24 Feb 2026 09:18:49:563","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 09:18:49.563","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","2953392","Week I-8 (1)","10","Date of Visit","32210320","0","24 Mar 2026 12:46:24:377","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 12:46:24.377","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","3029613","Week I-12 (1)","11","Date of Visit","33233571","0","24 Apr 2026 10:58:58:363","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 10:58:58.363","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192595","PL100162004","6330","3077132","Week M-4 (1)","15","Date of Visit","33885549","0","20 May 2026 10:46:28:873","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 10:46:28.873","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","2876862","Screening","3","Date of Visit","31174143","0","12 Feb 2026 11:01:16:537","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 11:01:16.537","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","2940669","Week I-0 (1)","7","Date of Visit","32034259","0","17 Feb 2026 12:30:54:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 12:30:54.177","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","2941293","Week I-2 (1)","8","Date of Visit","32043351","0","03 Mar 2026 12:41:36:590","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 12:41:36.590","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","2974447","Week I-4 (1)","9","Date of Visit","32497621","0","17 Mar 2026 12:02:25:660","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 12:02:25.660","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","3013570","Week I-8 (1)","10","Date of Visit","33032374","0","14 Apr 2026 09:35:28:303","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 09:35:28.303","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192773","PL100162005","6330","3064522","Week I-12 (1)","11","Date of Visit","33691523","0","12 May 2026 12:45:52:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 12:45:52.880","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","193860","PL100162006","6330","2899884","Screening","3","Date of Visit","31464370","0","17 Feb 2026 12:28:15:477","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 12:28:15.477","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","193870","PL100162007","6330","2900070","Screening","3","Date of Visit","31466160","0","05 Feb 2026 11:54:56:233","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 11:54:56.233","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","2908407","Screening","3","Date of Visit","31569371","0","15 Apr 2026 15:09:58:173","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 15:09:58.173","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","2976146","Week I-0 (1)","7","Date of Visit","32518951","0","08 Mar 2026 08:21:38:030","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260308 08:21:38.030","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","2989007","Week I-2 (1)","8","Date of Visit","32697330","0","16 Mar 2026 11:21:59:897","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 11:21:59.897","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","3009772","Week I-4 (1)","9","Date of Visit","32982032","0","01 Apr 2026 08:35:42:780","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 08:35:42.780","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","3044633","Week I-8 (1)","10","Date of Visit","33436677","0","04 May 2026 12:10:41:957","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 12:10:41.957","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194234","PL100162008","6330","3127287","Week I-12 (1)","11","Date of Visit","34557345","0","21 May 2026 09:12:10:330","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 09:12:10.330","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","2910474","Screening","3","Date of Visit","31594050","0","12 Feb 2026 11:04:00:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 11:04:00.617","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","3009198","Week I-0 (1)","7","Date of Visit","32973944","0","17 Mar 2026 14:17:55:990","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 14:17:55.990","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","3013981","Week I-2 (1)","8","Date of Visit","33039552","0","30 Mar 2026 09:58:27:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 09:58:27.770","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","3040188","Week I-4 (1)","9","Date of Visit","33376515","0","13 Apr 2026 08:52:18:193","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 08:52:18.193","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194344","PL100162009","6330","3061611","Week I-8 (1)","10","Date of Visit","33652079","0","11 May 2026 09:50:24:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 09:50:24.737","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","2910624","Screening","3","Date of Visit","31594834","0","15 Apr 2026 15:09:57:893","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 15:09:57.893","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","3009074","Week I-0 (1)","7","Date of Visit","32971816","0","17 Mar 2026 14:51:29:293","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 14:51:29.293","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","3014112","Week I-2 (1)","8","Date of Visit","33040669","0","30 Mar 2026 10:05:05:753","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 10:05:05.753","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","3040231","Week I-4 (1)","9","Date of Visit","33377213","0","13 Apr 2026 09:29:20:057","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 09:29:20.057","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","194351","PL100162010","6330","3061731","Week I-8 (1)","10","Date of Visit","33653543","0","11 May 2026 09:51:05:193","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 09:51:05.193","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195193","PL100162011","6330","2929008","Screening","3","Date of Visit","31850265","0","23 Feb 2026 15:10:47:417","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 15:10:47.417","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","2929038","Screening","3","Date of Visit","31850632","0","20 Mar 2026 11:21:33:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 11:21:33.723","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","3016183","Week I-0 (1)","7","Date of Visit","33067661","0","20 Mar 2026 11:36:03:173","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 11:36:03.173","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","3022203","Week I-2 (1)","8","Date of Visit","33137868","0","14 Apr 2026 09:24:05:353","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 09:24:05.353","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","3064492","Week I-4 (1)","9","Date of Visit","33691116","0","14 Apr 2026 09:24:24:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 09:24:24.030","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195196","PL100162012","6330","3064501","Week I-8 (1)","10","Date of Visit","33691172","0","13 May 2026 08:51:20:823","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 08:51:20.823","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","2969614","Screening","3","Date of Visit","32428943","0","13 Mar 2026 11:02:40:863","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 11:02:40.863","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","3000179","Week I-0 (1)","7","Date of Visit","32851658","0","11 Mar 2026 13:06:20:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 13:06:20.627","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","3001251","Week I-2 (1)","8","Date of Visit","32867398","0","25 Mar 2026 11:03:03:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 11:03:03.397","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","3032250","Week I-4 (1)","9","Date of Visit","33271007","0","07 Apr 2026 10:41:57:793","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 10:41:57.793","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","197215","PL100162013","6330","3051471","Week I-8 (1)","10","Date of Visit","33525531","0","05 May 2026 10:14:39:700","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 10:14:39.700","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","2892382","Screening","3","Date of Visit","31363423","0","27 Jan 2026 13:13:42:710","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260127 13:13:42.710","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","2969437","Week I-0 (1)","7","Date of Visit","32425218","0","20 Mar 2026 10:08:09:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 10:08:09.697","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","3021869","Week I-2 (1)","8","Date of Visit","33134818","0","23 Mar 2026 09:58:16:120","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 09:58:16.120","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","3025260","Week I-4 (1)","9","Date of Visit","33178276","0","31 Mar 2026 12:36:22:390","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 12:36:22.390","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","3043150","Week I-8 (1)","10","Date of Visit","33410622","0","22 May 2026 11:28:21:280","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 11:28:21.280","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193523","PL100172001","6330","3080084","Unscheduled 20260122","59","Date of Visit","33932414","0","21 Apr 2026 10:35:43:263","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 10:35:43.263","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","2898262","Screening","3","Date of Visit","31442668","0","27 Jan 2026 13:07:13:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260127 13:07:13.047","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","3003924","Week I-0 (1)","7","Date of Visit","32902760","0","23 Mar 2026 12:33:11:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 12:33:11.760","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","3026040","Week I-2 (1)","8","Date of Visit","33188974","0","23 Mar 2026 12:37:56:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 12:37:56.007","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","3026056","Week I-4 (1)","9","Date of Visit","33189197","0","10 Apr 2026 07:16:51:867","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 07:16:51.867","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","193795","PL100172002","6330","3059038","Week I-8 (1)","10","Date of Visit","33622306","0","22 May 2026 12:19:22:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:19:22.940","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","2906091","Screening","3","Date of Visit","31538322","0","24 Mar 2026 13:31:08:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 13:31:08.553","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","2996562","Week I-0 (1)","7","Date of Visit","32806805","0","24 Mar 2026 13:31:08:577","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 13:31:08.577","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","3006647","Week I-2 (1)","8","Date of Visit","32942137","0","24 Mar 2026 13:31:08:590","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 13:31:08.590","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","3029532","Week I-4 (1)","9","Date of Visit","33232640","0","07 Apr 2026 11:12:52:223","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 11:12:52.223","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","3051572","Week I-8 (1)","10","Date of Visit","33526660","0","22 May 2026 12:33:28:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:33:28.497","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","194122","PL100172003","6330","3209787","Unscheduled 20260407","59","Date of Visit","35271994","0","22 May 2026 12:41:00:393","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","07 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:41:00.393","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","2935537","Screening","3","Date of Visit","31953839","0","29 Mar 2026 09:49:09:020","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260329 09:49:09.020","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","2990317","Week I-0 (1)","7","Date of Visit","32714362","0","29 Mar 2026 09:49:09:037","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260329 09:49:09.037","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","3029673","Week I-2 (1)","8","Date of Visit","33234078","0","29 Mar 2026 09:49:09:047","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260329 09:49:09.047","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","3029687","Week I-4 (1)","9","Date of Visit","33234333","0","07 Apr 2026 11:04:21:997","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 11:04:21.997","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","195587","PL100172004","6330","3051550","Week I-8 (1)","10","Date of Visit","33526431","0","22 May 2026 12:44:34:063","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 12:44:34.063","","" +"POL","9921","DD5-PL10017","VISTAMED & VERTIGO Sp z o o","202948","PL100172005","6330","3089155","Screening","3","Date of Visit","34076347","0","23 Apr 2026 13:36:34:647","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 13:36:34.647","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","192870","PL100192001","6330","2879041","Screening","3","Date of Visit","31200700","0","05 Mar 2026 13:37:31:750","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 13:37:31.750","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","193115","PL100192002","6330","2884227","Screening","3","Date of Visit","31263710","0","05 Mar 2026 13:35:58:257","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 13:35:58.257","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","194516","PL100192003","6330","2914272","Screening","3","Date of Visit","31643379","0","02 Mar 2026 10:52:05:897","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 10:52:05.897","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","2929091","Screening","3","Date of Visit","31851538","0","12 Feb 2026 09:03:39:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 09:03:39.077","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","2996755","Week I-0 (1)","7","Date of Visit","32808900","0","16 Mar 2026 08:38:35:580","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 08:38:35.580","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","3009084","Week I-2 (1)","8","Date of Visit","32971913","0","13 May 2026 07:02:33:707","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 07:02:33.707","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","3037823","Week I-4 (1)","9","Date of Visit","33346562","0","17 Apr 2026 11:15:36:617","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 11:15:36.617","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195198","PL100192004","6330","3073999","Week I-8 (1)","10","Date of Visit","33841795","0","08 May 2026 11:00:38:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 11:00:38.533","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195310","PL100192005","6330","2931176","Screening","3","Date of Visit","31885577","0","17 Mar 2026 16:00:34:340","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 16:00:34.340","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","202550","PL100192006","6330","3080170","Screening","3","Date of Visit","33933149","0","13 May 2026 06:43:50:143","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 06:43:50.143","","" +"POL","9909","DD5-PL10020","Uniwersyteckie Centrum Stomatologii i Medycyny Specjalistycznej Sp z o o","202563","PL100202001","6330","3080439","Screening","3","Date of Visit","33935366","0","29 Apr 2026 13:11:19:200","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 13:11:19.200","","" +"POL","9909","DD5-PL10020","Uniwersyteckie Centrum Stomatologii i Medycyny Specjalistycznej Sp z o o","203829","PL100202002","6330","3111187","Screening","3","Date of Visit","34310956","0","29 Apr 2026 13:16:52:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 13:16:52.397","","" +"POL","9909","DD5-PL10020","Uniwersyteckie Centrum Stomatologii i Medycyny Specjalistycznej Sp z o o","210848","PL100202003","6330","3193558","Screening","3","Date of Visit","35046666","0","14 May 2026 09:13:18:877","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 09:13:18.877","","" +"POL","9899","DD5-PL10021","RiverMED","196581","PL100212001","6330","2956680","Screening","3","Date of Visit","32265908","0","02 Mar 2026 12:04:56:903","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 12:04:56.903","","" +"POL","9899","DD5-PL10021","RiverMED","196581","PL100212001","6330","3044401","Week I-0 (1)","7","Date of Visit","33432821","0","08 Apr 2026 08:01:52:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 08:01:52.553","","" +"POL","9899","DD5-PL10021","RiverMED","196581","PL100212001","6330","3053433","Week I-2 (1)","8","Date of Visit","33552495","0","15 Apr 2026 07:53:28:713","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 07:53:28.713","","" +"POL","9899","DD5-PL10021","RiverMED","196581","PL100212001","6330","3066723","Week I-4 (1)","9","Date of Visit","33720965","0","28 Apr 2026 11:37:29:403","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:37:29.403","","" +"POL","9899","DD5-PL10021","RiverMED","200106","PL100212002","6330","3031620","Screening","3","Date of Visit","33261142","0","22 Apr 2026 11:30:36:957","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 11:30:36.957","","" +"POL","9899","DD5-PL10021","RiverMED","200114","PL100212003","6330","3031761","Screening","3","Date of Visit","33262820","0","18 May 2026 09:42:04:960","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 09:42:04.960","","" +"POL","9899","DD5-PL10021","RiverMED","200459","PL100212004","6330","3038225","Screening","3","Date of Visit","33351665","0","22 Apr 2026 11:35:32:680","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 11:35:32.680","","" +"POL","9899","DD5-PL10021","RiverMED","200459","PL100212004","6330","3190366","Week I-0 (1)","7","Date of Visit","35002690","0","14 May 2026 08:36:31:030","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 08:36:31.030","","" +"POL","9899","DD5-PL10021","RiverMED","202202","PL100212005","6330","3072966","Screening","3","Date of Visit","33823038","0","19 May 2026 12:37:57:420","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 12:37:57.420","","" +"POL","9899","DD5-PL10021","RiverMED","210673","PL100212006","6330","3190618","Screening","3","Date of Visit","35005161","0","14 May 2026 09:40:27:517","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 09:40:27.517","","" +"POL","9899","DD5-PL10021","RiverMED","211290","PL100212007","6330","3203079","Screening","3","Date of Visit","35185894","0","20 May 2026 08:44:56:063","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 08:44:56.063","","" +"POL","9865","DD5-PL10022","Allmedica","200102","PL100222001","6330","3031561","Screening","3","Date of Visit","33260421","0","27 Mar 2026 11:32:00:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 11:32:00.097","","" +"POL","9865","DD5-PL10022","Allmedica","200102","PL100222001","6330","3083609","Week I-0 (1)","7","Date of Visit","33984698","0","23 Apr 2026 12:22:21:680","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 12:22:21.680","","" +"POL","9865","DD5-PL10022","Allmedica","200102","PL100222001","6330","3088924","Week I-2 (1)","8","Date of Visit","34071766","0","06 May 2026 12:13:51:567","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 12:13:51.567","","" +"POL","9865","DD5-PL10022","Allmedica","200102","PL100222001","6330","3134487","Week I-4 (1)","9","Date of Visit","34679800","0","20 May 2026 11:46:14:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 11:46:14.290","","" +"POL","9917","DD5-PL10023","Szpital Grochowski Im Dr Med Rafala Masztaka Sp Z O O","199170","PL100232001","6330","3012422","Screening","3","Date of Visit","33018491","0","31 Mar 2026 21:28:25:270","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 21:28:25.270","","" +"POL","9934","DD5-PL10024","Clinical Best Solutions Warszawa","197453","PL100242001","6330","2974893","Screening","3","Date of Visit","32502723","0","12 May 2026 08:55:40:643","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 08:55:40.643","","" +"POL","9934","DD5-PL10024","Clinical Best Solutions Warszawa","204218","PL100242002","6330","3118803","Screening","3","Date of Visit","34443495","0","30 Apr 2026 10:50:32:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 10:50:32.727","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","195802","PL100252001","6330","2940370","Screening","3","Date of Visit","32030158","0","17 Mar 2026 01:14:07:367","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 01:14:07.367","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202195","PL100252002","6330","3072811","Screening","3","Date of Visit","33820957","0","07 May 2026 19:03:19:947","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 19:03:19.947","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202622","PL100252003","6330","3081641","Screening","3","Date of Visit","33957811","0","21 Apr 2026 18:01:03:593","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 18:01:03.593","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202622","PL100252003","6330","3138539","Week I-0 (1)","7","Date of Visit","34748655","0","08 May 2026 07:24:35:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 07:24:35.417","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202622","PL100252003","6330","3138664","Week I-2 (1)","8","Date of Visit","34750329","0","25 May 2026 06:09:09:010","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 06:09:09.010","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202788","PL100252004","6330","3085495","Screening","3","Date of Visit","34015720","0","11 May 2026 18:22:07:367","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 18:22:07.367","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202788","PL100252004","6330","3191938","Week I-0 (1)","7","Date of Visit","35025855","0","13 May 2026 19:35:01:110","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 19:35:01.110","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","196786","PL100262001","6330","2960873","Screening","3","Date of Visit","32327729","0","05 May 2026 08:20:40:813","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 08:20:40.813","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","196786","PL100262001","6330","3047352","Week I-0 (1)","7","Date of Visit","33475534","0","07 Apr 2026 06:43:23:777","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 06:43:23.777","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","196786","PL100262001","6330","3050852","Week I-2 (1)","8","Date of Visit","33516826","0","16 Apr 2026 15:51:39:477","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 15:51:39.477","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","196786","PL100262001","6330","3071537","Week I-4 (1)","9","Date of Visit","33804979","0","29 Apr 2026 10:56:00:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 10:56:00.720","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","198505","PL100262002","6330","2998430","Screening","3","Date of Visit","32830768","0","12 May 2026 10:59:35:727","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 10:59:35.727","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","198512","PL100262003","6330","2998529","Screening","3","Date of Visit","32832239","0","12 May 2026 11:35:44:357","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 11:35:44.357","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","201846","PL100262004","6330","3065798","Screening","3","Date of Visit","33707956","0","15 Apr 2026 06:11:55:453","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 06:11:55.453","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","204837","PL100262005","6330","3132360","Screening","3","Date of Visit","34637607","0","07 May 2026 11:47:17:950","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 11:47:17.950","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","204837","PL100262005","6330","3194887","Week I-0 (1)","7","Date of Visit","35067380","0","15 May 2026 09:49:16:850","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 09:49:16.850","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191313","PL100282002","6330","2843705","Screening","3","Date of Visit","30730451","0","18 Mar 2026 11:24:37:647","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 11:24:37.647","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2843840","Screening","3","Date of Visit","30731585","0","12 Feb 2026 14:43:10:353","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 14:43:10.353","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2899128","Week I-0 (1)","7","Date of Visit","31453157","0","02 Feb 2026 15:28:54:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 15:28:54.937","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2909356","Week I-2 (1)","8","Date of Visit","31581516","0","10 Feb 2026 16:43:16:693","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 16:43:16.693","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2927031","Week I-4 (1)","9","Date of Visit","31823337","0","02 Mar 2026 13:06:20:160","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 13:06:20.160","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","2967045","Week I-8 (1)","10","Date of Visit","32389944","0","26 Mar 2026 12:06:54:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 12:06:54.413","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","3035780","Week I-12 (1)","11","Date of Visit","33316339","0","24 Apr 2026 15:43:56:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 15:43:56.460","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","3094715","Week M-4 (1)","15","Date of Visit","34136500","0","22 May 2026 14:49:54:100","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 14:49:54.100","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191326","PL100282003","6330","3043785","Unscheduled 20260331","59","Date of Visit","33419133","0","31 Mar 2026 18:54:33:340","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","31 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","AE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 18:54:33.340","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191333","PL100282004","6330","2843963","Screening","3","Date of Visit","30733162","0","18 Mar 2026 11:40:49:643","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 11:40:49.643","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","2880086","Screening","3","Date of Visit","31213954","0","20 Jan 2026 13:31:46:277","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 13:31:46.277","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","2947122","Week I-0 (1)","7","Date of Visit","32120658","0","02 Mar 2026 18:28:51:267","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 18:28:51.267","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","2967799","Week I-2 (1)","8","Date of Visit","32402518","0","11 Mar 2026 15:26:58:993","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 15:26:58.993","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","3001914","Week I-4 (1)","9","Date of Visit","32876023","0","18 Mar 2026 11:12:36:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 11:12:36.207","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","3016403","Week I-8 (1)","10","Date of Visit","33070858","0","20 Apr 2026 15:42:24:147","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 15:42:24.147","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192917","PL100282005","6330","3078494","Week I-12 (1)","11","Date of Visit","33909572","0","18 May 2026 10:24:41:413","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 10:24:41.413","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192926","PL100282006","6330","2880279","Screening","3","Date of Visit","31216497","0","18 Mar 2026 12:05:39:233","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 12:05:39.233","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","2883336","Screening","3","Date of Visit","31251883","0","18 Mar 2026 12:08:33:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 12:08:33.717","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","2980342","Week I-0 (1)","7","Date of Visit","32571339","0","11 Mar 2026 16:09:47:797","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 16:09:47.797","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","3002031","Week I-2 (1)","8","Date of Visit","32877821","0","18 Mar 2026 13:48:24:650","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 13:48:24.650","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","3017032","Week I-4 (1)","9","Date of Visit","33078947","0","31 Mar 2026 18:14:18:797","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 18:14:18.797","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193068","PL100282007","6330","3043759","Week I-8 (1)","10","Date of Visit","33418702","0","29 Apr 2026 12:46:02:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 12:46:02.577","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","2883364","Screening","3","Date of Visit","31252082","0","11 Feb 2026 16:03:20:203","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 16:03:20.203","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","2947375","Week I-0 (1)","7","Date of Visit","32124240","0","02 Mar 2026 13:32:21:500","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 13:32:21.500","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","2967235","Week I-2 (1)","8","Date of Visit","32393891","0","11 Mar 2026 15:50:53:610","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 15:50:53.610","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","3001968","Week I-4 (1)","9","Date of Visit","32876872","0","18 Mar 2026 10:23:16:297","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 10:23:16.297","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","3016163","Week I-8 (1)","10","Date of Visit","33067390","0","20 Apr 2026 15:44:02:183","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 15:44:02.183","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","193070","PL100282008","6330","3078497","Week I-12 (1)","11","Date of Visit","33909594","0","18 May 2026 10:39:46:223","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 10:39:46.223","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","197710","PL100282009","6330","2980416","Screening","3","Date of Visit","32572459","0","11 Mar 2026 16:28:13:407","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 16:28:13.407","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","197710","PL100282009","6330","3047452","Week I-0 (1)","7","Date of Visit","33477117","0","13 Apr 2026 11:57:26:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 11:57:26.667","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","197710","PL100282009","6330","3062088","Week I-2 (1)","8","Date of Visit","33657903","0","22 Apr 2026 08:57:11:300","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 08:57:11.300","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","197710","PL100282009","6330","3083482","Week I-4 (1)","9","Date of Visit","33982122","0","29 Apr 2026 12:49:28:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 12:49:28.987","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","198490","PL100282010","6330","2998074","Screening","3","Date of Visit","32825135","0","11 Mar 2026 16:32:55:313","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 16:32:55.313","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","198490","PL100282010","6330","3057566","Week I-0 (1)","7","Date of Visit","33603221","0","10 Apr 2026 15:25:09:933","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 15:25:09.933","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","198490","PL100282010","6330","3060281","Week I-2 (1)","8","Date of Visit","33635469","0","26 Apr 2026 12:01:17:337","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260426 12:01:17.337","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","198490","PL100282010","6330","3096389","Week I-4 (1)","9","Date of Visit","34158117","0","05 May 2026 16:47:20:347","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 16:47:20.347","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","199238","PL100282011","6330","3013837","Screening","3","Date of Visit","33037434","0","19 Mar 2026 12:04:28:150","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 12:04:28.150","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","199238","PL100282011","6330","3089164","Week I-0 (1)","7","Date of Visit","34076545","0","26 Apr 2026 12:11:05:180","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260426 12:11:05.180","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","199238","PL100282011","6330","3096405","Week I-2 (1)","8","Date of Visit","34158235","0","11 May 2026 13:58:08:247","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 13:58:08.247","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","199238","PL100282011","6330","3186067","Week I-4 (1)","9","Date of Visit","34937900","0","22 May 2026 15:46:31:997","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 15:46:31.997","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","201474","PL100282012","6330","3057908","Screening","3","Date of Visit","33606836","0","10 Apr 2026 15:47:12:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 15:47:12.770","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","201474","PL100282012","6330","3137959","Week I-0 (1)","7","Date of Visit","34740243","0","11 May 2026 14:14:17:943","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 14:14:17.943","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","201474","PL100282012","6330","3186105","Week I-2 (1)","8","Date of Visit","34938283","0","22 May 2026 15:13:50:883","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 15:13:50.883","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","202110","PL100282013","6330","3071529","Screening","3","Date of Visit","33804710","0","20 Apr 2026 16:17:37:210","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 16:17:37.210","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","203895","PL100282014","6330","3112412","Screening","3","Date of Visit","34326298","0","29 Apr 2026 13:01:12:290","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 13:01:12.290","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","196065","PL100302001","6330","2945966","Screening","3","Date of Visit","32103355","0","19 Feb 2026 12:13:24:867","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 12:13:24.867","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","196065","PL100302001","6330","3044585","Week I-0 (1)","7","Date of Visit","33435961","0","01 Apr 2026 11:45:52:213","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 11:45:52.213","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","196065","PL100302001","6330","3045088","Week I-2 (1)","8","Date of Visit","33442406","0","14 Apr 2026 14:17:03:080","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 14:17:03.080","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","196065","PL100302001","6330","3065536","Week I-4 (1)","9","Date of Visit","33704490","0","30 Apr 2026 07:35:03:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 07:35:03.077","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198566","PL100302002","6330","2999630","Screening","3","Date of Visit","32845055","0","13 Mar 2026 09:13:50:750","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260313 09:13:50.750","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198566","PL100302002","6330","3079998","Week I-0 (1)","7","Date of Visit","33931439","0","04 May 2026 13:28:40:263","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 13:28:40.263","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198566","PL100302002","6330","3127615","Week I-2 (1)","8","Date of Visit","34566175","0","04 May 2026 13:44:43:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 13:44:43.763","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198566","PL100302002","6330","3127650","Week I-4 (1)","9","Date of Visit","34566592","0","19 May 2026 09:38:37:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 09:38:37.340","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198761","PL100302003","6330","3003302","Screening","3","Date of Visit","32893482","0","22 Apr 2026 13:33:44:987","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 13:33:44.987","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198784","PL100302004","6330","3003852","Screening","3","Date of Visit","32900930","0","28 Apr 2026 09:06:20:710","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 09:06:20.710","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","201764","PL100302005","6330","3064122","Screening","3","Date of Visit","33686239","0","19 May 2026 08:40:31:350","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 08:40:31.350","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","201764","PL100302005","6330","3126552","Week I-0 (1)","7","Date of Visit","34540813","0","05 May 2026 11:55:37:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 11:55:37.773","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","201764","PL100302005","6330","3131618","Week I-2 (1)","8","Date of Visit","34628328","0","19 May 2026 07:05:38:223","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 07:05:38.223","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202522","PL100302006","6330","3079467","Screening","3","Date of Visit","33924040","0","22 Apr 2026 13:37:35:223","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 13:37:35.223","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202522","PL100302006","6330","3187311","Week I-0 (1)","7","Date of Visit","34958482","0","15 May 2026 14:10:36:107","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 14:10:36.107","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202544","PL100302007","6330","3080070","Screening","3","Date of Visit","33932094","0","22 Apr 2026 13:39:29:863","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 13:39:29.863","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202544","PL100302007","6330","3187499","Week I-0 (1)","7","Date of Visit","34961587","0","20 May 2026 12:11:58:430","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 12:11:58.430","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202865","PL100302008","6330","3087429","Screening","3","Date of Visit","34043623","0","28 Apr 2026 11:58:01:717","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 11:58:01.717","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202865","PL100302008","6330","3126448","Week I-0 (1)","7","Date of Visit","34537872","0","05 May 2026 08:51:37:447","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 08:51:37.447","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202865","PL100302008","6330","3129539","Week I-2 (1)","8","Date of Visit","34591805","0","19 May 2026 10:27:13:377","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 10:27:13.377","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","202917","PL100302009","6330","3088502","Screening","3","Date of Visit","34063414","0","30 Apr 2026 08:32:39:343","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 08:32:39.343","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","204150","PL100302010","6330","3117165","Screening","3","Date of Visit","34401968","0","30 Apr 2026 08:52:24:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 08:52:24.930","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","204150","PL100302010","6330","3190975","Week I-0 (1)","7","Date of Visit","35009585","0","21 May 2026 13:46:26:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 13:46:26.577","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","204160","PL100302011","6330","3117392","Screening","3","Date of Visit","34404660","0","30 Apr 2026 09:02:12:450","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 09:02:12.450","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","204160","PL100302011","6330","3185310","Week I-0 (1)","7","Date of Visit","34927751","0","21 May 2026 13:46:57:097","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 13:46:57.097","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","2886698","Screening","3","Date of Visit","31292983","0","20 Jan 2026 08:43:49:357","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 08:43:49.357","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","2953011","Week I-0 (1)","7","Date of Visit","32204053","0","24 Feb 2026 07:55:02:843","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 07:55:02.843","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","2953143","Week I-2 (1)","8","Date of Visit","32206310","0","10 Mar 2026 06:47:48:230","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 06:47:48.230","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","2995946","Week I-4 (1)","9","Date of Visit","32796214","0","24 Mar 2026 11:24:59:277","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 11:24:59.277","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","3029288","Week I-8 (1)","10","Date of Visit","33229480","0","29 Apr 2026 08:21:47:707","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 08:21:47.707","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","193237","PL100322001","6330","3196081","Unscheduled 20260324","59","Date of Visit","35084779","0","15 May 2026 08:35:52:630","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","24 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","IT WAS PLANNED VISIT I-4 BUT THE SYSTEM ASKED ME TO ADD WHOLE BLOOD DNA AS AN ADDITIONAL VISIT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 08:35:52.630","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","2932408","Screening","3","Date of Visit","31905181","0","13 Feb 2026 11:38:00:673","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 11:38:00.673","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","3021812","Week I-0 (1)","7","Date of Visit","33133755","0","23 Mar 2026 10:54:02:507","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 10:54:02.507","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","3025600","Week I-2 (1)","8","Date of Visit","33182372","0","10 Apr 2026 06:11:41:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 06:11:41.560","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","3058824","Week I-4 (1)","9","Date of Visit","33619904","0","20 Apr 2026 06:59:58:070","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 06:59:58.070","","" +"POL","9880","DD5-PL10032","Osrodek Badan Klinicznych CLINSANTE S C","195367","PL100322002","6330","3076393","Week I-8 (1)","10","Date of Visit","33873028","0","15 May 2026 07:36:30:083","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 07:36:30.083","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","2908885","Screening","3","Date of Visit","31576136","0","02 Feb 2026 12:47:40:393","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 12:47:40.393","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","2989796","Week I-0 (1)","7","Date of Visit","32707979","0","09 Mar 2026 09:48:13:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 09:48:13.667","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","2989989","Week I-2 (1)","8","Date of Visit","32710774","0","24 Mar 2026 10:27:07:450","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 10:27:07.450","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","3028822","Week I-4 (1)","9","Date of Visit","33224316","0","14 Apr 2026 05:56:18:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 05:56:18.153","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194260","PL100351001","6330","3063499","Week I-8 (1)","10","Date of Visit","33678410","0","08 May 2026 07:28:32:037","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260508 07:28:32.037","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194893","PL100351002","6330","2922660","Screening","3","Date of Visit","31760668","0","10 Mar 2026 09:23:24:230","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 09:23:24.230","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198286","PL100351003","6330","2994435","Screening","3","Date of Visit","32774634","0","09 Apr 2026 11:38:38:117","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 11:38:38.117","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","2994643","Screening","3","Date of Visit","32778238","0","10 Mar 2026 09:46:50:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 09:46:50.930","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","3034956","Week I-0 (1)","7","Date of Visit","33305445","0","27 Mar 2026 08:43:54:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 08:43:54.720","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","3037700","Week I-2 (1)","8","Date of Visit","33343913","0","09 Apr 2026 11:41:30:857","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 11:41:30.857","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","3057356","Week I-4 (1)","9","Date of Visit","33600849","0","24 Apr 2026 08:27:18:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 08:27:18.460","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198293","PL100351004","6330","3091812","Week I-8 (1)","10","Date of Visit","34106914","0","21 May 2026 10:28:06:627","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 10:28:06.627","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200565","PL100351005","6330","3040333","Screening","3","Date of Visit","33378431","0","01 Apr 2026 13:44:30:433","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 13:44:30.433","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200565","PL100351005","6330","3111004","Week I-0 (1)","7","Date of Visit","34309063","0","28 Apr 2026 05:53:49:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 05:53:49.600","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200565","PL100351005","6330","3113415","Week I-2 (1)","8","Date of Visit","34339729","0","12 May 2026 12:04:57:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 12:04:57.497","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200919","PL100351006","6330","3046912","Screening","3","Date of Visit","33469754","0","03 Apr 2026 12:20:52:290","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 12:20:52.290","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200919","PL100351006","6330","3061520","Week I-0 (1)","7","Date of Visit","33650361","0","13 Apr 2026 12:58:03:790","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 12:58:03.790","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200919","PL100351006","6330","3062227","Week I-2 (1)","8","Date of Visit","33659462","0","28 Apr 2026 05:58:33:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 05:58:33.857","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","200919","PL100351006","6330","3113433","Week I-4 (1)","9","Date of Visit","34339948","0","15 May 2026 11:33:47:297","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 11:33:47.297","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","203868","PL100351007","6330","3111909","Screening","3","Date of Visit","34319493","0","12 May 2026 09:23:20:443","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 09:23:20.443","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","210435","PL100351008","6330","3185205","Screening","3","Date of Visit","34925637","0","12 May 2026 12:10:52:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 12:10:52.237","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2843254","Screening","3","Date of Visit","30726016","0","09 Jan 2026 08:09:11:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 08:09:11.957","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2867813","Week I-0 (1)","7","Date of Visit","31063760","0","09 Jan 2026 09:24:59:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 09:24:59.157","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2869829","Week I-2 (1)","8","Date of Visit","31088777","0","23 Jan 2026 14:43:55:767","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 14:43:55.767","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2894953","Week I-4 (1)","9","Date of Visit","31398263","0","06 Feb 2026 09:33:40:740","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 09:33:40.740","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2919987","Week I-8 (1)","10","Date of Visit","31725016","0","08 Mar 2026 10:50:49:990","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260308 10:50:49.990","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","2989036","Week I-12 (1)","11","Date of Visit","32697607","0","03 Apr 2026 13:08:53:427","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 13:08:53.427","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191281","PL100362001","6330","3096227","Unscheduled 20260401","59","Date of Visit","34156232","0","27 Apr 2026 13:49:26:877","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","01 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 13:49:26.877","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2843528","Screening","3","Date of Visit","30728820","0","09 Jan 2026 09:45:50:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 09:45:50.477","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2867921","Week I-0 (1)","7","Date of Visit","31065011","0","09 Jan 2026 13:28:02:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 13:28:02.367","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2870442","Week I-2 (1)","8","Date of Visit","31095917","0","23 Jan 2026 15:00:35:783","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 15:00:35.783","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2895022","Week I-4 (1)","9","Date of Visit","31399532","0","06 Feb 2026 09:53:41:047","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 09:53:41.047","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2920039","Week I-8 (1)","10","Date of Visit","31725592","0","08 Mar 2026 10:57:56:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260308 10:57:56.050","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","2989038","Week I-12 (1)","11","Date of Visit","32697617","0","03 Apr 2026 10:22:57:673","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 10:22:57.673","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191299","PL100362002","6330","3067651","Unscheduled 20260401","59","Date of Visit","33742691","0","15 Apr 2026 13:28:47:197","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","01 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 13:28:47.197","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2843580","Screening","3","Date of Visit","30729377","0","09 Jan 2026 13:50:40:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 13:50:40.937","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2868050","Week I-0 (1)","7","Date of Visit","31066699","0","09 Jan 2026 15:01:46:190","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260109 15:01:46.190","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2870593","Week I-2 (1)","8","Date of Visit","31097595","0","23 Jan 2026 15:13:49:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260123 15:13:49.400","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2895053","Week I-4 (1)","9","Date of Visit","31400198","0","06 Feb 2026 10:02:15:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 10:02:15.130","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2920060","Week I-8 (1)","10","Date of Visit","31725810","0","08 Mar 2026 10:59:33:017","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260308 10:59:33.017","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","2989039","Week I-12 (1)","11","Date of Visit","32697625","0","03 Apr 2026 12:35:09:207","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 12:35:09.207","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","191303","PL100362003","6330","3112394","Unscheduled 20260401","59","Date of Visit","34326107","0","27 Apr 2026 13:52:16:600","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","01 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 13:52:16.600","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2872683","Screening","3","Date of Visit","31121119","0","05 Feb 2026 12:16:08:777","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260205 12:16:08.777","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2916473","Week I-0 (1)","7","Date of Visit","31671670","0","09 Feb 2026 11:57:22:527","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 11:57:22.527","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2922853","Week I-2 (1)","8","Date of Visit","31762852","0","19 Feb 2026 14:35:07:970","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 14:35:07.970","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2947012","Week I-4 (1)","9","Date of Visit","32119094","0","08 Mar 2026 13:34:57:750","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260308 13:34:57.750","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","2989067","Week I-8 (1)","10","Date of Visit","32698252","0","03 Apr 2026 13:40:19:727","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 13:40:19.727","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192597","PL100362004","6330","3067655","Unscheduled 20260305","59","Date of Visit","33741087","0","15 Apr 2026 12:56:42:723","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","05 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 12:56:42.723","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2872768","Screening","3","Date of Visit","31122259","0","12 Feb 2026 13:05:17:873","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 13:05:17.873","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2923238","Week I-0 (1)","7","Date of Visit","31767852","0","12 Feb 2026 13:05:17:893","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 13:05:17.893","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2929374","Week I-2 (1)","8","Date of Visit","31855102","0","24 Feb 2026 12:32:08:397","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 12:32:08.397","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2954996","Week I-4 (1)","9","Date of Visit","32239553","0","16 Mar 2026 16:41:38:637","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 16:41:38.637","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","3010625","Week I-8 (1)","10","Date of Visit","32994538","0","10 Apr 2026 15:38:47:953","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 15:38:47.953","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","2933304","Unscheduled 20260311","59","Date of Visit","31918885","0","15 Apr 2026 13:08:47:900","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","11 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","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 13:08:47.900","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","192602","PL100362005","6330","3203976","Unscheduled 20260507","59","Date of Visit","35196982","0","20 May 2026 13:56:16:740","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","07 MAY 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","THE PATIENT ATTENDED THE VISIT TO SUBMIT A PREVIOUSLY PENDING STOOL SAMPLE FROM VISIT I-12/M-0 FOR LABORATORY TESTING.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 13:56:16.740","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","2885817","Screening","3","Date of Visit","31282703","0","11 Feb 2026 13:23:03:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 13:23:03.817","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","2931315","Week I-0 (1)","7","Date of Visit","31887581","0","13 Feb 2026 12:52:31:070","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 12:52:31.070","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","2937025","Week I-2 (1)","8","Date of Visit","31980525","0","10 Mar 2026 18:38:45:313","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 18:38:45.313","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","2998658","Week I-4 (1)","9","Date of Visit","32833930","0","12 Mar 2026 13:35:20:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 13:35:20.230","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","3004462","Week I-8 (1)","10","Date of Visit","32911367","0","10 Apr 2026 15:35:46:230","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 15:35:46.230","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193192","PL100362006","6330","3060327","Week I-12 (1)","11","Date of Visit","33635851","0","13 May 2026 13:54:39:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 13:54:39.857","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","2896847","Screening","3","Date of Visit","31425191","0","12 Feb 2026 13:53:29:220","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 13:53:29.220","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","2946009","Week I-0 (1)","7","Date of Visit","32103920","0","23 Feb 2026 11:59:47:047","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260223 11:59:47.047","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","2951293","Week I-2 (1)","8","Date of Visit","32175653","0","08 Mar 2026 14:17:20:310","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260308 14:17:20.310","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","2989070","Week I-4 (1)","9","Date of Visit","32698307","0","23 Mar 2026 12:00:51:630","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 12:00:51.630","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","3025931","Week I-8 (1)","10","Date of Visit","33187614","0","20 Apr 2026 16:54:17:950","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 16:54:17.950","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","3078650","Week I-12 (1)","11","Date of Visit","33911109","0","20 May 2026 13:30:48:777","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 13:30:48.777","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193700","PL100362007","6330","3067750","Unscheduled 20260305","59","Date of Visit","33742439","0","15 Apr 2026 13:24:24:533","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","05 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 13:24:24.533","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193707","PL100362008","6330","2897037","Screening","3","Date of Visit","31428220","0","13 Feb 2026 09:48:23:687","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 09:48:23.687","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194274","PL100362009","6330","2909204","Screening","3","Date of Visit","31579675","0","23 Mar 2026 11:37:32:660","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 11:37:32.660","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194276","PL100362010","6330","2909271","Screening","3","Date of Visit","31580455","0","06 Mar 2026 14:32:11:187","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 14:32:11.187","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194276","PL100362010","6330","2966422","Week I-0 (1)","7","Date of Visit","32381891","0","06 Mar 2026 16:05:17:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 16:05:17.647","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194276","PL100362010","6330","2988373","Week I-2 (1)","8","Date of Visit","32691291","0","23 Mar 2026 12:27:08:717","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 12:27:08.717","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194276","PL100362010","6330","3026006","Week I-4 (1)","9","Date of Visit","33188751","0","03 Apr 2026 11:46:30:927","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 11:46:30.927","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","2923687","Screening","3","Date of Visit","31774899","0","06 Mar 2026 13:12:30:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 13:12:30.007","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","2966623","Week I-0 (1)","7","Date of Visit","32384063","0","06 Mar 2026 14:15:15:717","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 14:15:15.717","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","2984373","Week I-2 (1)","8","Date of Visit","32630408","0","23 Mar 2026 11:47:46:077","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 11:47:46.077","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","3025858","Week I-4 (1)","9","Date of Visit","33186649","0","03 Apr 2026 12:21:28:750","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 12:21:28.750","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194945","PL100362011","6330","3048405","Week I-8 (1)","10","Date of Visit","33489316","0","05 May 2026 07:55:44:930","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 07:55:44.930","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","197549","PL100362012","6330","2977327","Screening","3","Date of Visit","32533423","0","09 Apr 2026 13:36:36:043","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 13:36:36.043","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198311","PL100362013","6330","2994970","Screening","3","Date of Visit","32783547","0","23 Mar 2026 10:01:55:057","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 10:01:55.057","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198311","PL100362013","6330","3046623","Week I-0 (1)","7","Date of Visit","33465726","0","03 Apr 2026 14:31:01:553","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 14:31:01.553","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198311","PL100362013","6330","3048589","Week I-2 (1)","8","Date of Visit","33491014","0","20 Apr 2026 16:48:45:727","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 16:48:45.727","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198320","PL100362014","6330","2995109","Screening","3","Date of Visit","32785302","0","03 Apr 2026 13:38:37:293","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 13:38:37.293","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198320","PL100362014","6330","3051901","Week I-0 (1)","7","Date of Visit","33530443","0","09 Apr 2026 15:31:48:387","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 15:31:48.387","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198320","PL100362014","6330","3058075","Week I-2 (1)","8","Date of Visit","33609056","0","20 Apr 2026 16:28:52:210","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 16:28:52.210","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198326","PL100362015","6330","2995209","Screening","3","Date of Visit","32786399","0","23 Mar 2026 10:53:22:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 10:53:22.960","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198326","PL100362015","6330","3046747","Week I-0 (1)","7","Date of Visit","33467938","0","03 Apr 2026 15:10:53:540","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 15:10:53.540","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198326","PL100362015","6330","3048609","Week I-2 (1)","8","Date of Visit","33491378","0","20 Apr 2026 16:41:29:377","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 16:41:29.377","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","198326","PL100362015","6330","3112435","Unscheduled 20260415","59","Date of Visit","34326568","0","27 Apr 2026 14:05:54:403","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","15 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","DNA SAMPLE COLLECTION","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 14:05:54.403","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","204617","PL100362016","6330","3128032","Screening","3","Date of Visit","34571217","0","04 May 2026 15:18:08:893","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 15:18:08.893","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","204621","PL100362017","6330","3128138","Screening","3","Date of Visit","34572288","0","04 May 2026 15:53:36:703","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 15:53:36.703","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","204625","PL100362018","6330","3128197","Screening","3","Date of Visit","34572890","0","20 May 2026 15:04:44:293","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 15:04:44.293","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","204625","PL100362018","6330","3203064","Week I-0 (1)","7","Date of Visit","35185757","0","21 May 2026 07:55:17:057","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 07:55:17.057","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197085","PT100011001","6330","2966785","Screening","3","Date of Visit","32385342","0","04 Mar 2026 17:21:01:933","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 17:21:01.933","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197085","PT100011001","6330","3062079","Week I-0 (1)","7","Date of Visit","33657817","0","17 Apr 2026 15:05:01:000","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260417 15:05:01.000","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197085","PT100011001","6330","3074835","Week I-2 (1)","8","Date of Visit","33852609","0","19 May 2026 10:50:41:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 10:50:41.453","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197085","PT100011001","6330","3201086","Week I-4 (1)","9","Date of Visit","35159267","0","19 May 2026 10:55:25:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 10:55:25.833","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197651","PT100011002","6330","2979196","Screening","3","Date of Visit","32556415","0","01 Apr 2026 15:00:57:717","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 15:00:57.717","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194229","PT100012001","6330","2908295","Screening","3","Date of Visit","31567879","0","30 Mar 2026 16:02:41:513","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 16:02:41.513","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194240","PT100012002","6330","2908529","Screening","3","Date of Visit","31571376","0","31 Mar 2026 15:24:09:923","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 15:24:09.923","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","2912687","Screening","3","Date of Visit","31626202","0","10 Feb 2026 19:07:16:447","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 19:07:16.447","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","2951267","Week I-0 (1)","7","Date of Visit","32175472","0","02 Mar 2026 16:18:25:540","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 16:18:25.540","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","2967583","Week I-2 (1)","8","Date of Visit","32399141","0","23 Mar 2026 16:22:50:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 16:22:50.560","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","3026594","Week I-4 (1)","9","Date of Visit","33195774","0","27 Mar 2026 16:54:48:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 16:54:48.630","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194446","PT100012003","6330","3038734","Week I-8 (1)","10","Date of Visit","33360531","0","15 May 2026 09:50:18:377","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 09:50:18.377","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196294","PT100012004","6330","2950772","Screening","3","Date of Visit","32167975","0","31 Mar 2026 15:32:16:903","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 15:32:16.903","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196600","PT100012005","6330","2957008","Screening","3","Date of Visit","32270570","0","23 Mar 2026 17:23:07:813","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 17:23:07.813","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196600","PT100012005","6330","3037848","Week I-0 (1)","7","Date of Visit","33346779","0","18 May 2026 16:14:28:793","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 16:14:28.793","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196600","PT100012005","6330","3038796","Week I-2 (1)","8","Date of Visit","33361107","0","13 Apr 2026 09:38:15:143","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 09:38:15.143","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196600","PT100012005","6330","3061760","Week I-4 (1)","9","Date of Visit","33653973","0","15 May 2026 12:54:01:563","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 12:54:01.563","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197752","PT100012006","6330","2981435","Screening","3","Date of Visit","32586399","0","19 May 2026 15:23:32:653","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 15:23:32.653","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197773","PT100012007","6330","2981788","Screening","3","Date of Visit","32591177","0","23 Mar 2026 17:00:39:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 17:00:39.397","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197773","PT100012007","6330","3037931","Week I-0 (1)","7","Date of Visit","33347743","0","27 Mar 2026 18:21:49: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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 18:21:49.320","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197773","PT100012007","6330","3038844","Week I-2 (1)","8","Date of Visit","33361624","0","13 Apr 2026 08:46:00:010","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 08:46:00.010","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197773","PT100012007","6330","3061605","Week I-4 (1)","9","Date of Visit","33651925","0","15 May 2026 13:01:53:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 13:01:53.617","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","202219","PT100012008","6330","3073293","Screening","3","Date of Visit","33831483","0","19 May 2026 16:14:29:353","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 16:14:29.353","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","202226","PT100012009","6330","3073519","Screening","3","Date of Visit","33835407","0","05 May 2026 15:45:48:500","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 15:45:48.500","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","202326","PT100012010","6330","3075405","Screening","3","Date of Visit","33862564","0","19 May 2026 16:21:51:047","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 16:21:51.047","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","204866","PT100012011","6330","3133009","Screening","3","Date of Visit","34647011","0","18 May 2026 10:07:38:723","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 10:07:38.723","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","2958439","Screening","3","Date of Visit","32293187","0","05 Mar 2026 11:45:04:363","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 11:45:04.363","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","3018579","Week I-0 (1)","7","Date of Visit","33097983","0","20 Mar 2026 09:04:27:670","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 09:04:27.670","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","3021492","Week I-2 (1)","8","Date of Visit","33131071","0","02 Apr 2026 09:57:20:117","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 09:57:20.117","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","3046916","Week I-4 (1)","9","Date of Visit","33469880","0","20 Apr 2026 07:04:39:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 07:04:39.680","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","196672","PT100022001","6330","3076418","Week I-8 (1)","10","Date of Visit","33873275","0","18 May 2026 08:40:08:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 08:40:08.887","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","199483","PT100022002","6330","3019111","Screening","3","Date of Visit","33104083","0","13 Apr 2026 10:56:41:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 10:56:41.050","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","199483","PT100022002","6330","3066651","Week I-0 (1)","7","Date of Visit","33719738","0","16 Apr 2026 08:20:34:723","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 08:20:34.723","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","199483","PT100022002","6330","3069379","Week I-2 (1)","8","Date of Visit","33765755","0","30 Apr 2026 15:53:33:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 15:53:33.683","","" +"PRT","9200","DD5-PT10002","ULS BRAGA - HOSP. BRAGA","199483","PT100022002","6330","3125093","Week I-4 (1)","9","Date of Visit","34518329","0","18 May 2026 07:56:54:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","15 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 07:56:54.437","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","190800","PT100042001","6330","2833491","Screening","3","Date of Visit","30607439","0","08 Jan 2026 15:09:43:533","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260108 15:09:43.533","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196753","PT100042002","6330","2960197","Screening","3","Date of Visit","32318446","0","29 Mar 2026 22:19:31:630","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260329 22:19:31.630","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196918","PT100042003","6330","2963706","Screening","3","Date of Visit","32359262","0","06 Mar 2026 00:22:26:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 00:22:26.853","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196918","PT100042003","6330","3046782","Week I-0 (1)","7","Date of Visit","33468484","0","07 Apr 2026 15:16:42:603","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 15:16:42.603","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196918","PT100042003","6330","3052171","Week I-2 (1)","8","Date of Visit","33534514","0","19 Apr 2026 23:10:35:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260419 23:10:35.870","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196918","PT100042003","6330","3075986","Week I-4 (1)","9","Date of Visit","33867386","0","30 Apr 2026 14:03:17:683","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 14:03:17.683","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","197655","PT100042004","6330","2979244","Screening","3","Date of Visit","32556999","0","17 Mar 2026 16:33:23:107","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 16:33:23.107","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","197655","PT100042004","6330","3038053","Week I-0 (1)","7","Date of Visit","33349708","0","30 Mar 2026 14:52:36:553","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 14:52:36.553","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","197655","PT100042004","6330","3041023","Week I-2 (1)","8","Date of Visit","33386293","0","22 Apr 2026 08:34:14:847","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 08:34:14.847","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","197655","PT100042004","6330","3083391","Week I-4 (1)","9","Date of Visit","33981108","0","22 Apr 2026 08:43:38:787","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 08:43:38.787","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","202099","PT100042005","6330","3071345","Screening","3","Date of Visit","33801576","0","30 Apr 2026 23:02:11:400","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 23:02:11.400","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","210860","PT100042006","6330","3193773","Screening","3","Date of Visit","35050451","0","23 May 2026 22:01:34:550","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260523 22:01:34.550","","" +"PRT","9211","DD5-PT10009","ULSAM - HOSP. SANTA LUZIA","200708","PT100092001","6330","3042489","Screening","3","Date of Visit","33403169","0","20 May 2026 14:36:48:487","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 14:36:48.487","","" +"PRT","9211","DD5-PT10009","ULSAM - HOSP. SANTA LUZIA","200708","PT100092001","6330","3187903","Week I-0 (1)","7","Date of Visit","34969053","0","12 May 2026 13:22:40:363","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 13:22:40.363","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","196622","RO100012001","6330","2957395","Screening","3","Date of Visit","32278210","0","24 Mar 2026 14:37:22:130","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 14:37:22.130","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","196622","RO100012001","6330","3068834","Week I-0 (1)","7","Date of Visit","33757349","0","14 May 2026 10:07:56:327","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 10:07:56.327","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","199460","RO100012002","6330","3018591","Screening","3","Date of Visit","33098104","0","24 Mar 2026 14:41:37:073","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 14:41:37.073","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","199460","RO100012002","6330","3114108","Week I-0 (1)","7","Date of Visit","34351627","0","14 May 2026 16:27:27:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 16:27:27.313","","" +"ROU","9429","DD5-RO10001","Institutul Regional de Gastroenterologie și Hepatologie Prof Dr Octavian Fodor","199460","RO100012002","6330","3195013","Week I-2 (1)","8","Date of Visit","35069183","0","15 May 2026 08:44:46:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 08:44:46.123","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","2884361","Screening","3","Date of Visit","31265480","0","16 Feb 2026 17:05:34:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 17:05:34.743","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","2978897","Week I-0 (1)","7","Date of Visit","32553348","0","18 Mar 2026 22:21:06:957","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 22:21:06.957","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","3017792","Week I-2 (1)","8","Date of Visit","33088515","0","21 Mar 2026 15:46:05:093","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260321 15:46:05.093","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","3023721","Week I-4 (1)","9","Date of Visit","33157705","0","31 Mar 2026 10:03:28:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 10:03:28.440","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","3042748","Week I-8 (1)","10","Date of Visit","33405793","0","27 Apr 2026 07:02:16:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 07:02:16.867","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","193119","RO100032001","6330","3060964","Unscheduled 20260328","59","Date of Visit","33643106","0","12 Apr 2026 18:31:30:247","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","28 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","PATIENT BROKE THE PHONE CONTAINING THE JOURNAL. CAME TO PROVIDE A NEW ONE","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260412 18:31:30.247","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","2940413","Screening","3","Date of Visit","32030820","0","22 May 2026 10:05:54:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 10:05:54.877","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","3034761","Week I-0 (1)","7","Date of Visit","33303496","0","31 Mar 2026 09:00:00:257","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 09:00:00.257","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","3042494","Week I-2 (1)","8","Date of Visit","33403261","0","12 Apr 2026 20:04:42:907","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260412 20:04:42.907","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","3060989","Week I-4 (1)","9","Date of Visit","33643221","0","06 May 2026 14:14:02:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 14:14:02.387","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","195805","RO100032002","6330","3039286","Unscheduled 20260225","59","Date of Visit","33365190","0","29 Mar 2026 13:47:57:510","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","25 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","TO REPEAT SEROLOGY FOR HEPATITIS B","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260329 13:47:57.510","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","200004","RO100032003","6330","3029512","Screening","3","Date of Visit","33232291","0","23 Apr 2026 12:51:44:590","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","24 MAR 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 12:51:44.590","","" +"ROU","9431","DD5-RO10003","Spitalul Clinic Colentina","211696","RO100032004","6330","3211677","Screening","3","Date of Visit","35296165","0","25 May 2026 08:51:11:943","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 08:51:11.943","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","190852","RO100062001","6330","2834456","Screening","3","Date of Visit","30619198","0","12 Feb 2026 13:58:36:387","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260212 13:58:36.387","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","192567","RO100062002","6330","2872083","Screening","3","Date of Visit","31113762","0","26 Apr 2026 18:59:03:320","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260426 18:59:03.320","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","196590","RO100062003","6330","2956792","Screening","3","Date of Visit","32267165","0","11 May 2026 13:47:34:607","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 13:47:34.607","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","196590","RO100062003","6330","3053332","Week I-0 (1)","7","Date of Visit","33550998","0","26 Apr 2026 19:03:23:407","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260426 19:03:23.407","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","196590","RO100062003","6330","3096506","Week I-2 (1)","8","Date of Visit","34159142","0","28 Apr 2026 20:51:27:427","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 20:51:27.427","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","196590","RO100062003","6330","3116247","Week I-4 (1)","9","Date of Visit","34388263","0","06 May 2026 09:04:51:747","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 09:04:51.747","","" +"SWE","9847","DD5-SE10001","Ersta sjukhus","200421","SE100012001","6330","3037642","Screening","3","Date of Visit","33343411","0","21 Apr 2026 08:12:56:140","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 08:12:56.140","","" +"SWE","9847","DD5-SE10001","Ersta sjukhus","205129","SE100012002","6330","3138595","Screening","3","Date of Visit","34749155","0","12 May 2026 08:28:09:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","08 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 08:28:09.497","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2887398","Screening","3","Date of Visit","31301340","0","11 May 2026 09:12:41:967","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 09:12:41.967","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2939306","Week I-0 (1)","7","Date of Visit","32014500","0","16 Feb 2026 14:03:08:177","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 14:03:08.177","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2939671","Week I-2 (1)","8","Date of Visit","32019451","0","02 Mar 2026 14:09:19:483","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 14:09:19.483","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2967342","Week I-4 (1)","9","Date of Visit","32395171","0","18 Mar 2026 13:52:12:817","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","PATIENT DECIDED TO END TREATMENT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 13:52:12.817","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","3017003","Induction Early Discontinuation (1)","12","Date of Visit","33078810","0","11 May 2026 09:14:42:723","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 09:14:42.723","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","3017004","Induction Safety Follow Up (1)","13","Date of Visit","33078811","0","27 Apr 2026 09:36:48:763","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 09:36:48.763","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","194785","SE100022002","6330","2919904","Screening","3","Date of Visit","31724097","0","16 Feb 2026 07:05:52:390","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 07:05:52.390","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","2928490","Screening","3","Date of Visit","31844579","0","26 Feb 2026 11:32:11:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 11:32:11.417","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","2976004","Week I-0 (1)","7","Date of Visit","32517204","0","04 Mar 2026 12:54:07:077","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 12:54:07.077","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","2976974","Week I-2 (1)","8","Date of Visit","32529610","0","18 Mar 2026 13:27:04:507","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 13:27:04.507","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","3016940","Week I-4 (1)","9","Date of Visit","33077640","0","01 Apr 2026 05:21:21:713","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 05:21:21.713","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","195169","SE100022003","6330","3044265","Week I-8 (1)","10","Date of Visit","33430207","0","29 Apr 2026 12:31:14:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 12:31:14.237","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","201752","SE100022004","6330","3063829","Screening","3","Date of Visit","33682375","0","21 May 2026 12:12:00:550","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 12:12:00.550","","" +"SWE","9856","DD5-SE10004","Orebro universitetssjukhus","204542","SE100042001","6330","3126401","Screening","3","Date of Visit","34537156","0","04 May 2026 11:33:03:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 11:33:03.760","","" +"SWE","9835","DD5-SE10009","Alingsas lasarett","201984","SE100092001","6330","3069125","Screening","3","Date of Visit","33761610","0","16 Apr 2026 07:26:39:590","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 07:26:39.590","","" +"SWE","9831","DD5-SE10010","Akademiska Sjukhuset","202673","SE100102001","6330","3082957","Screening","3","Date of Visit","33974959","0","22 Apr 2026 13:46:12:313","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 13:46:12.313","","" +"SWE","9831","DD5-SE10010","Akademiska Sjukhuset","202673","SE100102001","6330","3200376","Week I-0 (1)","7","Date of Visit","35147884","0","19 May 2026 10:58:24:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 10:58:24.313","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2860345","Screening","3","Date of Visit","30971228","0","13 Feb 2026 13:30:57:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 13:30:57.887","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2889687","Week I-0 (1)","7","Date of Visit","31328680","0","13 Feb 2026 13:24:40:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 13:24:40.560","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2890978","Week I-2 (1)","8","Date of Visit","31344474","0","13 Feb 2026 13:11:12:233","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#001 > 22JAN2026 > RASH","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 13:11:12.233","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2925717","Induction Early Discontinuation (1)","12","Date of Visit","31803646","0","13 Feb 2026 13:08:03:423","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260213 13:08:03.423","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","194489","TR100022001","6330","2913604","Screening","3","Date of Visit","31637271","0","26 Mar 2026 12:28:38:473","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 12:28:38.473","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","196426","TR100022002","6330","2953443","Screening","3","Date of Visit","32210724","0","06 Mar 2026 13:58:36:040","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 13:58:36.040","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","200139","TR100022003","6330","3032330","Screening","3","Date of Visit","33272258","0","26 Mar 2026 12:40:36:013","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 12:40:36.013","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","200139","TR100022003","6330","3111713","Week I-0 (1)","7","Date of Visit","34317105","0","27 Apr 2026 12:25:44:830","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 12:25:44.830","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","200139","TR100022003","6330","3112169","Week I-2 (1)","8","Date of Visit","34322653","0","11 May 2026 10:42:44:227","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 10:42:44.227","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","200139","TR100022003","6330","3185029","Week I-4 (1)","9","Date of Visit","34924963","0","21 May 2026 13:15:14:773","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 13:15:14.773","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196585","TR100032001","6330","2956738","Screening","3","Date of Visit","32266672","0","06 Mar 2026 08:26:32:940","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 08:26:32.940","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196585","TR100032001","6330","3051264","Week I-0 (1)","7","Date of Visit","33523132","0","08 Apr 2026 08:01:02:717","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 08:01:02.717","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196585","TR100032001","6330","3053431","Week I-2 (1)","8","Date of Visit","33552457","0","21 Apr 2026 11:02:11:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 11:02:11.247","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196585","TR100032001","6330","3080201","Week I-4 (1)","9","Date of Visit","33933508","0","06 May 2026 11:37:17:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 11:37:17.850","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","2956746","Screening","3","Date of Visit","32266737","0","10 Apr 2026 11:16:27:383","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 11:16:27.383","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","3051282","Week I-0 (1)","7","Date of Visit","33523274","0","10 Apr 2026 11:44:14:687","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 11:44:14.687","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","3059897","Week I-2 (1)","8","Date of Visit","33630690","0","16 Apr 2026 12:56:08:323","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Adverse Event","Reason this visit did not occur","#002 > 12APR2026 > ULSERATIVE COLITIS EXACERBATION","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 12:56:08.323","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","3070428","Induction Early Discontinuation (1)","12","Date of Visit","33783799","0","12 May 2026 13:53:37:763","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 13:53:37.763","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196700","TR100032003","6330","2959085","Screening","3","Date of Visit","32302756","0","26 Feb 2026 08:23:41:577","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 08:23:41.577","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196700","TR100032003","6330","3053234","Week I-0 (1)","7","Date of Visit","33549917","0","15 Apr 2026 11:03:03:437","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 11:03:03.437","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196700","TR100032003","6330","3067252","Week I-2 (1)","8","Date of Visit","33730990","0","21 Apr 2026 11:10:37:853","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 11:10:37.853","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196700","TR100032003","6330","3080226","Week I-4 (1)","9","Date of Visit","33933767","0","06 May 2026 12:08:54:417","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 12:08:54.417","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","192863","TR100052001","6330","2878915","Screening","3","Date of Visit","31199235","0","04 Mar 2026 11:31:03:247","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 11:31:03.247","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","195756","TR100052002","6330","2938939","Screening","3","Date of Visit","32007563","0","17 Mar 2026 10:45:50:103","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 10:45:50.103","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","196588","TR100052003","6330","2956768","Screening","3","Date of Visit","32266960","0","17 Mar 2026 10:46:23:913","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 10:46:23.913","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","201756","TR100052004","6330","3063930","Screening","3","Date of Visit","33683654","0","15 Apr 2026 12:43:27:873","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 12:43:27.873","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","201756","TR100052004","6330","3187470","Week I-0 (1)","7","Date of Visit","34961306","0","14 May 2026 12:05:52:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 12:05:52.927","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","201756","TR100052004","6330","3194363","Week I-2 (1)","8","Date of Visit","35060375","0","22 May 2026 08:52:41:167","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 08:52:41.167","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","200076","TR100062001","6330","3031002","Screening","3","Date of Visit","33252522","0","25 Mar 2026 05:55:49:150","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 05:55:49.150","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","200076","TR100062001","6330","3126339","Week I-0 (1)","7","Date of Visit","34535868","0","04 May 2026 08:48:18:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 08:48:18.850","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","200076","TR100062001","6330","3126758","Week I-2 (1)","8","Date of Visit","34545386","0","20 May 2026 06:46:41:090","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 06:46:41.090","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","201870","TR100062002","6330","3066440","Screening","3","Date of Visit","33716232","0","15 Apr 2026 05:56:44:267","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 05:56:44.267","","" +"TUR","9444","DD5-TR10006","Antalya Training And Research Hospital","201870","TR100062002","6330","3208204","Week I-0 (1)","7","Date of Visit","35252103","0","22 May 2026 08:32:04:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 08:32:04.897","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","199022","TR100072001","6330","3009250","Screening","3","Date of Visit","32974461","0","08 Apr 2026 12:23:45:067","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260408 12:23:45.067","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","200973","TR100072002","6330","3048067","Screening","3","Date of Visit","33485738","0","03 Apr 2026 13:37:45:137","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","03 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 13:37:45.137","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","200973","TR100072002","6330","3191214","Week I-0 (1)","7","Date of Visit","35012544","0","13 May 2026 11:35:03:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 11:35:03.803","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","200973","TR100072002","6330","3191557","Week I-2 (1)","8","Date of Visit","35019321","0","25 May 2026 05:20:00:033","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 05:20:00.033","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","2940391","Screening","3","Date of Visit","32030458","0","07 May 2026 13:28:48:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 13:28:48.127","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","3031902","Week I-0 (1)","7","Date of Visit","33265301","0","25 Mar 2026 13:25:27:743","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 13:25:27.743","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","3032801","Week I-2 (1)","8","Date of Visit","33276905","0","09 Apr 2026 11:44:14:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 11:44:14.667","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","3057359","Week I-4 (1)","9","Date of Visit","33600957","0","22 Apr 2026 09:56:16:967","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 09:56:16.967","","" +"TUR","8810","DD5-TR10008","Hacettepe University Medical Faculty","195803","TR100082001","6330","3083727","Week I-8 (1)","10","Date of Visit","33986300","0","20 May 2026 13:22:20:967","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 13:22:20.967","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2871984","Screening","3","Date of Visit","31112479","0","13 Jan 2026 06:57:30:653","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260113 06:57:30.653","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2908628","Week I-0 (1)","7","Date of Visit","31572865","0","03 Feb 2026 12:23:37:210","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 12:23:37.210","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2912343","Week I-2 (1)","8","Date of Visit","31622333","0","16 Feb 2026 10:50:32:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 10:50:32.760","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2939355","Week I-4 (1)","9","Date of Visit","32015547","0","02 Mar 2026 11:22:19:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 11:22:19.720","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","2966673","Week I-8 (1)","10","Date of Visit","32384486","0","03 Apr 2026 07:36:30:417","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","1 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 07:36:30.417","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","3048025","Week I-12 (1)","11","Date of Visit","33485076","0","27 Apr 2026 12:23:24:817","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 12:23:24.817","","" +"TUR","9447","DD5-TR10009","Gazi University Hospital","192559","TR100091001","6330","3111823","Week M-4 (1)","15","Date of Visit","34322537","0","22 May 2026 07:21:45:790","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 07:21:45.790","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","190814","TW100022001","6330","2833861","Screening","3","Date of Visit","30612622","0","22 Jan 2026 07:55:38:730","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 07:55:38.730","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","191960","TW100022002","6330","2859344","Screening","3","Date of Visit","30958704","0","22 Jan 2026 07:58:04:237","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","31 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 07:58:04.237","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","195145","TW100022003","6330","2928020","Screening","3","Date of Visit","31838655","0","15 Feb 2026 06:32:45:557","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260215 06:32:45.557","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","195145","TW100022003","6330","3011182","Week I-0 (1)","7","Date of Visit","33000875","0","25 Mar 2026 00:57:15:397","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 00:57:15.397","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","195145","TW100022003","6330","3030635","Week I-2 (1)","8","Date of Visit","33248779","0","05 Apr 2026 06:22:02:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260405 06:22:02.677","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","195145","TW100022003","6330","3048933","Week I-4 (1)","9","Date of Visit","33495862","0","19 Apr 2026 06:44:37:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260419 06:44:37.667","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","197155","TW100022004","6330","2968286","Screening","3","Date of Visit","32408187","0","13 Apr 2026 08:31:06:087","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 08:31:06.087","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","197155","TW100022004","6330","3063322","Week I-0 (1)","7","Date of Visit","33676117","0","19 Apr 2026 07:21:44:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260419 07:21:44.217","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","197155","TW100022004","6330","3075439","Week I-2 (1)","8","Date of Visit","33863036","0","30 Apr 2026 04:46:48:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 04:46:48.000","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","197155","TW100022004","6330","3119804","Week I-4 (1)","9","Date of Visit","34457367","0","18 May 2026 01:45:51:587","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 01:45:51.587","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2762822","Screening","3","Date of Visit","29634794","0","27 Nov 2025 05:44:12:387","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251127 05:44:12.387","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2836979","Week I-0 (1)","7","Date of Visit","30652782","0","19 Dec 2025 06:44:47:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251219 06:44:47.667","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2844429","Week I-2 (1)","8","Date of Visit","30739381","0","05 Jan 2026 01:00:25:027","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","31 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260105 01:00:25.027","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2861294","Week I-4 (1)","9","Date of Visit","30981735","0","15 Jan 2026 06:49:33:720","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260115 06:49:33.720","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2878928","Week I-8 (1)","10","Date of Visit","31199483","0","11 Feb 2026 09:11:45:973","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260211 09:11:45.973","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","2928877","Week I-12 (1)","11","Date of Visit","31848686","0","16 Mar 2026 06:09:11:883","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 06:09:11.883","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","3008663","Week M-4 (1)","15","Date of Visit","32966124","0","10 Apr 2026 04:10:32:630","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 04:10:32.630","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","187337","TW100032001","6330","3058691","Week M-8 (1)","16","Date of Visit","33618431","0","07 May 2026 05:51:59:157","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 05:51:59.157","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","188304","TW100032002","6330","2783440","Screening","3","Date of Visit","29900017","0","13 Jan 2026 12:08:10:270","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","02 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260113 12:08:10.270","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","199288","TW100032003","6330","3014954","Screening","3","Date of Visit","33051340","0","20 Apr 2026 07:48:48:813","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 07:48:48.813","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","199288","TW100032003","6330","3066194","Week I-0 (1)","7","Date of Visit","33713138","0","20 Apr 2026 08:04:05:443","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 08:04:05.443","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","199288","TW100032003","6330","3076683","Week I-2 (1)","8","Date of Visit","33878178","0","30 Apr 2026 05:01:24:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 05:01:24.020","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","199288","TW100032003","6330","3119824","Week I-4 (1)","9","Date of Visit","34457621","0","13 May 2026 05:11:59:007","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 05:11:59.007","","" +"TWN","9745","DD5-TW10005","Kaohsiung Chang Gung Memorial Hospital","200230","TW100052001","6330","3034058","Screening","3","Date of Visit","33292717","0","02 Apr 2026 03:57:32:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 03:57:32.247","","" +"TWN","9745","DD5-TW10005","Kaohsiung Chang Gung Memorial Hospital","200230","TW100052001","6330","3086447","Week I-0 (1)","7","Date of Visit","34029920","0","04 May 2026 06:59:03:493","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 06:59:03.493","","" +"TWN","9745","DD5-TW10005","Kaohsiung Chang Gung Memorial Hospital","200230","TW100052001","6330","3126386","Week I-2 (1)","8","Date of Visit","34536995","0","19 May 2026 09:56:10:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 09:56:10.323","","" +"TWN","9745","DD5-TW10005","Kaohsiung Chang Gung Memorial Hospital","200230","TW100052001","6330","3200962","Week I-4 (1)","9","Date of Visit","35156448","0","25 May 2026 09:06:51:670","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260525 09:06:51.670","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2590023","Screening","3","Date of Visit","27797535","0","07 Oct 2025 05:36:13:560","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251007 05:36:13.560","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2682662","Week I-0 (1)","7","Date of Visit","28843875","0","10 Nov 2025 18:01:00:987","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251110 18:01:00.987","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2686758","Week I-2 (1)","8","Date of Visit","28889771","0","19 Nov 2025 18:25:01:623","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251119 18:25:01.623","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2717251","Week I-4 (1)","9","Date of Visit","29240624","0","30 Dec 2025 20:45:19:410","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251230 20:45:19.410","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2859241","Week I-8 (1)","10","Date of Visit","30957602","0","30 Dec 2025 20:46:40:240","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 DEC 2025","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251230 20:46:40.240","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2859242","Week I-12 (1)","11","Date of Visit","30957610","0","26 Jan 2026 23:51:58:960","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260126 23:51:58.960","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2897312","Week M-4 (1)","15","Date of Visit","31431485","0","15 Apr 2026 18:01:43:667","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 18:01:43.667","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","3068330","Maintenance Early Discontinuation (1)","27","Date of Visit","33749038","0","15 Apr 2026 18:03:16:237","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 18:03:16.237","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","3068331","Maintenance Safety Follow Up (1)","28","Date of Visit","33749039","0","21 May 2026 17:10:38:303","Tier 1","SDVTier","Yes","Did this visit occur?","COMPLETED STUDY","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 17:10:38.303","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2897316","Unscheduled 20260126","59","Date of Visit","32539205","0","05 Mar 2026 18:16:49:973","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","26 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA SAMPLE COLLECTED DURING INDUCTION WEEK 12","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 18:16:49.973","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","3125244","Unscheduled 20260305","59","Date of Visit","34520907","0","30 Apr 2026 18:55:40:200","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","5 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SUBJECT RECEVIED C-DIFF TESTING DUE TO HEIGHTED AND CONTINUOUS EFFECTS OF BLOATING/STOMACH CRAMPING","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 18:55:40.200","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2604228","Screening","3","Date of Visit","27985274","0","28 Oct 2025 22:13:47:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251028 22:13:47.760","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2724267","Week I-0 (1)","7","Date of Visit","29364104","0","17 Dec 2025 18:59:37:833","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251217 18:59:37.833","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2840788","Week I-2 (1)","8","Date of Visit","30695971","0","17 Dec 2025 19:12:55:020","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251217 19:12:55.020","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2840802","Week I-4 (1)","9","Date of Visit","30696126","0","17 Dec 2025 19:24:57:580","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251217 19:24:57.580","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2840816","Week I-8 (1)","10","Date of Visit","30696342","0","12 Jan 2026 18:36:00:460","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 JAN 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260112 18:36:00.460","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2873597","Week I-12 (1)","11","Date of Visit","31131819","0","11 Mar 2026 19:01:03:610","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 19:01:03.610","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","2977761","Week M-4 (1)","15","Date of Visit","32539370","0","19 Mar 2026 21:50:49:707","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 21:50:49.707","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","3020575","Week M-8 (1)","16","Date of Visit","33121254","0","09 Apr 2026 20:40:07:503","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 20:40:07.503","","" +"USA","8844","DD5-US10001","Clinnova Research","180234","US100012002","6330","3058425","Week M-12 (1)","17","Date of Visit","33614656","0","21 May 2026 18:26:28:003","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 18:26:28.003","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2606700","Screening","3","Date of Visit","28012993","0","09 Mar 2026 17:05:12:613","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 17:05:12.613","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2707182","Week I-0 (1)","7","Date of Visit","29138200","0","17 Nov 2025 20:05:08:217","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251117 20:05:08.217","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2707278","Week I-2 (1)","8","Date of Visit","29139163","0","02 Dec 2025 21:35:21:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251202 21:35:21.617","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2788581","Week I-4 (1)","9","Date of Visit","29988719","0","17 Dec 2025 22:51:23:897","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251217 22:51:23.897","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2841026","Week I-8 (1)","10","Date of Visit","30698720","0","20 Jan 2026 18:55:40:533","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 JAN 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 18:55:40.533","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2888972","Week I-12 (1)","11","Date of Visit","31320220","0","18 Mar 2026 18:20:31:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 18:20:31.647","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2977772","Week M-4 (1)","15","Date of Visit","32539438","0","11 Mar 2026 19:02:32:187","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 19:02:32.187","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","3002433","Week M-8 (1)","16","Date of Visit","32882632","0","09 Apr 2026 20:39:37:130","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 20:39:37.130","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","3058426","Week M-12 (1)","17","Date of Visit","33614664","0","21 May 2026 18:13:56:680","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 18:13:56.680","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","2788622","Unscheduled 20251015","59","Date of Visit","31783209","0","17 Feb 2026 23:46:51:650","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","15 OCT 2025","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA AND RETEST FOR TB QUANTIFERON","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 23:46:51.650","","" +"USA","8844","DD5-US10001","Clinnova Research","180354","US100012003","6330","3041553","Unscheduled 20260123","59","Date of Visit","33393123","0","30 Mar 2026 23:35:55:743","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","23 JAN 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","SUBJECT RETURNED TO CLINIC WITH STOOL SAMPLES FOR VISIT I-4 INDUCTION WEEK 4.","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 23:35:55.743","","" +"USA","8844","DD5-US10001","Clinnova Research","181084","US100012004","6330","2621315","Screening","3","Date of Visit","28176162","0","16 Dec 2025 18:17:23:580","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","16 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251216 18:17:23.580","","" +"USA","8844","DD5-US10001","Clinnova Research","186310","US100012005","6330","2717465","Screening","3","Date of Visit","29242945","0","28 Jan 2026 18:41:05:150","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 18:41:05.150","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2843914","Screening","3","Date of Visit","30732535","0","20 Jan 2026 18:40:20:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 18:40:20.337","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2880400","Week I-0 (1)","7","Date of Visit","31218653","0","20 Jan 2026 18:40:08:313","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260120 18:40:08.313","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2885954","Week I-2 (1)","8","Date of Visit","31284155","0","27 Jan 2026 21:04:10:697","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260127 21:04:10.697","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2899436","Week I-4 (1)","9","Date of Visit","31457281","0","04 Mar 2026 21:39:11:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 21:39:11.320","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","2977747","Week I-8 (1)","10","Date of Visit","32539278","0","06 Apr 2026 16:53:03:583","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260406 16:53:03.583","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","3050232","Week I-12 (1)","11","Date of Visit","33509620","0","09 Apr 2026 20:29:56:173","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 20:29:56.173","","" +"USA","8844","DD5-US10001","Clinnova Research","191330","US100012006","6330","3058424","Week M-4 (1)","15","Date of Visit","33614549","0","11 May 2026 19:05:44:523","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 19:05:44.523","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","2927436","Screening","3","Date of Visit","31829209","0","10 Feb 2026 23:29:00:907","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260210 23:29:00.907","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","3026904","Week I-0 (1)","7","Date of Visit","33200481","0","25 Mar 2026 21:23:11:393","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 21:23:11.393","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","3033916","Week I-2 (1)","8","Date of Visit","33290476","0","22 Apr 2026 22:04:13:950","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 22:04:13.950","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","3086238","Week I-4 (1)","9","Date of Visit","34026490","0","22 Apr 2026 22:13:43:273","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 22:13:43.273","","" +"USA","8844","DD5-US10001","Clinnova Research","195111","US100012007","6330","3086247","Week I-8 (1)","10","Date of Visit","34026554","0","21 May 2026 18:46:55:043","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 18:46:55.043","","" +"USA","8844","DD5-US10001","Clinnova Research","196664","US100012008","6330","2958318","Screening","3","Date of Visit","32292064","0","15 Apr 2026 20:12:52:073","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 20:12:52.073","","" +"USA","8844","DD5-US10001","Clinnova Research","211142","US100012009","6330","3199855","Screening","3","Date of Visit","35139085","0","18 May 2026 18:20:06:903","Tier 5","SDVTier","","Did this visit occur?","","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 18:20:06.903","","" +"USA","8844","DD5-US10001","Clinnova Research","211359","US100012010","6330","3204416","Screening","3","Date of Visit","35202298","0","20 May 2026 18:25:44:790","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 18:25:44.790","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","2947166","Screening","3","Date of Visit","32121107","0","20 Feb 2026 18:01:47:980","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260220 18:01:47.980","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","3014605","Week I-0 (1)","7","Date of Visit","33046703","0","17 Mar 2026 22:24:21:153","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260317 22:24:21.153","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","3014846","Week I-2 (1)","8","Date of Visit","33050516","0","01 Apr 2026 16:53:35:083","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 16:53:35.083","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","3041339","Week I-4 (1)","9","Date of Visit","33450717","0","16 Apr 2026 16:20:53:727","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 16:20:53.727","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196123","US100042001","6330","3071604","Week I-8 (1)","10","Date of Visit","33805778","0","14 May 2026 23:57:34:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 23:57:34.183","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","2958674","Screening","3","Date of Visit","32296275","0","05 Mar 2026 12:25:59:847","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 12:25:59.847","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","3033490","Week I-0 (1)","7","Date of Visit","33285850","0","25 Mar 2026 19:04:04:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260325 19:04:04.237","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","3033705","Week I-2 (1)","8","Date of Visit","33288347","0","13 Apr 2026 19:05:28:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260413 19:05:28.237","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","3063080","Week I-4 (1)","9","Date of Visit","33671802","0","23 Apr 2026 19:12:52:017","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 19:12:52.017","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","196683","US100042002","6330","3089784","Week I-8 (1)","10","Date of Visit","34085151","0","18 May 2026 23:34:26:757","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 23:34:26.757","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","198837","US100042003","6330","3005235","Screening","3","Date of Visit","32922437","0","14 Apr 2026 11:39:23:270","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 11:39:23.270","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","198837","US100042003","6330","3043755","Week I-0 (1)","7","Date of Visit","33418600","0","01 Apr 2026 16:56:10:717","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 16:56:10.717","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","198837","US100042003","6330","3045644","Week I-2 (1)","8","Date of Visit","33451147","0","16 Apr 2026 16:32:38:553","Tier 5","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 16:32:38.553","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","198837","US100042003","6330","3071612","Week I-4 (1)","9","Date of Visit","33805992","0","29 Apr 2026 00:56:40:243","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 00:56:40.243","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","200334","US100042004","6330","3036141","Screening","3","Date of Visit","33321461","0","26 Mar 2026 14:16:05:913","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 14:16:05.913","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","200334","US100042004","6330","3116013","Week I-0 (1)","7","Date of Visit","34385056","0","06 May 2026 15:13:13:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 15:13:13.830","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","200334","US100042004","6330","3135144","Week I-2 (1)","8","Date of Visit","34691478","0","13 May 2026 13:56:50:847","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 13:56:50.847","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","203911","US100042005","6330","3112730","Screening","3","Date of Visit","34331625","0","27 Apr 2026 18:42:17:520","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 18:42:17.520","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","203911","US100042005","6330","3199951","Week I-0 (1)","7","Date of Visit","35140044","0","22 May 2026 17:33:45:647","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 17:33:45.647","","" +"USA","9685","DD5-US10004","Atlanta Gastroenterology Associates","210929","US100042006","6330","3195534","Screening","3","Date of Visit","35077392","0","15 May 2026 20:36:31:950","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 20:36:31.950","","" +"USA","9686","DD5-US10009","Southern Star Research Institute, LLC","186010","US100092001","6330","2711418","Screening","3","Date of Visit","29182373","0","27 Jan 2026 14:58:20:660","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","18 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260127 14:58:20.660","","" +"USA","9668","DD5-US10010","Atrium Health","211352","US100102001","6330","3204209","Screening","3","Date of Visit","35199591","0","20 May 2026 15:44:01:730","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 15:44:01.730","","" +"USA","8842","DD5-US10012","Tyler Research Institute, LLC","201847","US100122001","6330","3065842","Screening","3","Date of Visit","33708370","0","20 Apr 2026 15:59:56:347","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 15:59:56.347","","" +"USA","8842","DD5-US10012","Tyler Research Institute, LLC","201847","US100122001","6330","3188745","Week I-0 (1)","7","Date of Visit","34979783","0","12 May 2026 19:06:46:657","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 19:06:46.657","","" +"USA","9786","DD5-US10016","GastroIntestinal Bioscience","191561","US100162001","6330","2849349","Screening","3","Date of Visit","30813864","0","11 Mar 2026 20:33:19:397","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260311 20:33:19.397","","" +"USA","9633","DD5-US10018","New York Gastroenterology Associates","191465","US100182001","6330","2846839","Screening","3","Date of Visit","30776995","0","17 Feb 2026 18:17:19:813","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 18:17:19.813","","" +"USA","9633","DD5-US10018","New York Gastroenterology Associates","201336","US100182002","6330","3055402","Screening","3","Date of Visit","33575431","0","13 May 2026 15:51:13:037","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 15:51:13.037","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2651813","Screening","3","Date of Visit","28505649","0","03 Nov 2025 19:01:44:160","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251103 19:01:44.160","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2825326","Week I-0 (1)","7","Date of Visit","30498760","0","15 Dec 2025 18:17:44:250","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251215 18:17:44.250","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2833638","Week I-2 (1)","8","Date of Visit","30609329","0","22 Dec 2025 16:04:39:677","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251222 16:04:39.677","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2849432","Week I-4 (1)","9","Date of Visit","30815285","0","07 Jan 2026 15:52:07:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260107 15:52:07.287","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2866678","Week I-8 (1)","10","Date of Visit","31048914","0","04 Feb 2026 15:54:56:857","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","4 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260204 15:54:56.857","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2915238","Week I-12 (1)","11","Date of Visit","31655542","0","06 Mar 2026 15:44:53:467","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260306 15:44:53.467","","" +"USA","9693","DD5-US10019","Peak Gastroenterology Associates","182749","US100192001","6330","2961633","Week M-4 (1)","15","Date of Visit","32336220","0","03 Apr 2026 15:08:17:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","3 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260403 15:08:17.940","","" +"USA","9640","DD5-US10021","Gastroenterology Associates of Tidewater","202470","US100212001","6330","3078301","Screening","3","Date of Visit","33906420","0","06 May 2026 14:41:34:917","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 14:41:34.917","","" +"USA","9640","DD5-US10021","Gastroenterology Associates of Tidewater","202470","US100212001","6330","3194625","Week I-0 (1)","7","Date of Visit","35064023","0","15 May 2026 20:29:15:440","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260515 20:29:15.440","","" +"USA","9640","DD5-US10021","Gastroenterology Associates of Tidewater","211243","US100212002","6330","3202069","Screening","3","Date of Visit","35171642","0","20 May 2026 17:50:09:337","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 17:50:09.337","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","194978","US100222001","6330","2924109","Screening","3","Date of Visit","31781890","0","18 Mar 2026 22:17:36:700","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","09 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 22:17:36.700","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199275","US100222002","6330","3014634","Screening","3","Date of Visit","33046971","0","18 Mar 2026 22:19:53:760","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 22:19:53.760","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199275","US100222002","6330","3116176","Week I-0 (1)","7","Date of Visit","34387224","0","30 Apr 2026 20:40:20:617","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260430 20:40:20.617","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199275","US100222002","6330","3125354","Week I-2 (1)","8","Date of Visit","34522263","0","12 May 2026 15:51:47:437","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 15:51:47.437","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199692","US100222003","6330","3023248","Screening","3","Date of Visit","33151951","0","20 Mar 2026 22:32:22:353","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260320 22:32:22.353","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199692","US100222003","6330","3112864","Week I-0 (1)","7","Date of Visit","34333155","0","29 Apr 2026 22:48:52:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260429 22:48:52.600","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199692","US100222003","6330","3119640","Week I-2 (1)","8","Date of Visit","34454917","0","12 May 2026 21:40:15:000","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 21:40:15.000","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199858","US100222004","6330","3026844","Screening","3","Date of Visit","33199513","0","23 Mar 2026 22:03:25:207","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 22:03:25.207","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","190795","US100232001","6330","2833396","Screening","3","Date of Visit","30606084","0","02 Feb 2026 19:03:57:193","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260202 19:03:57.193","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2893144","Screening","3","Date of Visit","31374118","0","16 Feb 2026 18:25:45:977","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 18:25:45.977","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2920821","Week I-0 (1)","7","Date of Visit","31735952","0","17 Feb 2026 18:48:53:867","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260217 18:48:53.867","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2942561","Week I-2 (1)","8","Date of Visit","32059360","0","26 Feb 2026 15:33:21:830","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 15:33:21.830","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2961150","Week I-4 (1)","9","Date of Visit","32330339","0","04 Mar 2026 20:07:28:820","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260304 20:07:28.820","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","2977684","Week I-8 (1)","10","Date of Visit","32538408","0","09 Apr 2026 19:48:23:593","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 19:48:23.593","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","3058405","Week I-12 (1)","11","Date of Visit","33614087","0","05 May 2026 19:13:40:807","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 19:13:40.807","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","193550","US100232002","6330","3005117","Unscheduled 20260218","59","Date of Visit","32920590","0","12 Mar 2026 18:37:15:870","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","18 FEB 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","WHOLE BLOOD DNA NOT DRAWN AT I-0","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 18:37:15.870","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","2926840","Screening","3","Date of Visit","31821102","0","31 Mar 2026 15:15:40:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260331 15:15:40.727","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","2947558","Week I-0 (1)","7","Date of Visit","32127002","0","27 Feb 2026 18:00:17:197","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 18:00:17.197","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","2964117","Week I-2 (1)","8","Date of Visit","32362418","0","05 Mar 2026 19:27:59:237","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 19:27:59.237","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","2980739","Week I-4 (1)","9","Date of Visit","32576097","0","18 Mar 2026 17:39:24:597","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260318 17:39:24.597","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","3017486","Week I-8 (1)","10","Date of Visit","33085717","0","24 Apr 2026 18:50:16:470","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 18:50:16.470","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","195085","US100232003","6330","3095996","Week I-12 (1)","11","Date of Visit","34152991","0","21 May 2026 18:20:30:577","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 18:20:30.577","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","2997864","Screening","3","Date of Visit","32821450","0","15 Apr 2026 17:29:41:847","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 17:29:41.847","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","3067874","Week I-0 (1)","7","Date of Visit","33743847","0","23 Apr 2026 17:48:53:087","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 17:48:53.087","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","3089644","Week I-2 (1)","8","Date of Visit","34082444","0","20 May 2026 18:53:14:343","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","29 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 18:53:14.343","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","3204440","Week I-4 (1)","9","Date of Visit","35202658","0","20 May 2026 18:54:00:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260520 18:54:00.927","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","198482","US100232004","6330","3207426","Unscheduled 20260310","59","Date of Visit","35239749","0","21 May 2026 17:31:22:797","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","10 MAR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","INADVERTENTLY DREW DNA LAB AT SCREENING VISIT","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 17:31:22.797","","" +"USA","9656","DD5-US10027","Florida Research Center Inc.","185266","US100272001","6330","2698166","Screening","3","Date of Visit","29040433","0","22 Jan 2026 13:54:21:787","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 13:54:21.787","","" +"USA","9656","DD5-US10027","Florida Research Center Inc.","194732","US100272002","6330","2918790","Screening","3","Date of Visit","31708503","0","16 Feb 2026 19:54:24:570","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 19:54:24.570","","" +"USA","9988","DD5-US10039","Inflammatory Bowel Disease Center at NYU Langone","210471","US100392001","6330","3186161","Screening","3","Date of Visit","34939045","0","11 May 2026 15:32:07:880","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","11 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 15:32:07.880","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","193204","US100462001","6330","2886071","Screening","3","Date of Visit","31285075","0","20 Feb 2026 16:16:57:027","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260220 16:16:57.027","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","193925","US100462002","6330","2901422","Screening","3","Date of Visit","31481431","0","16 Feb 2026 16:04:46:660","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 16:04:46.660","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","194556","US100462003","6330","2915247","Screening","3","Date of Visit","31655701","0","09 Feb 2026 21:30:22:567","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","04 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260209 21:30:22.567","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","2927334","Screening","3","Date of Visit","31827777","0","26 Feb 2026 19:06:39:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 19:06:39.787","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3026898","Week I-0 (1)","7","Date of Visit","33200390","0","23 Mar 2026 20:16:03:607","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 20:16:03.607","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3026907","Week I-2 (1)","8","Date of Visit","33200530","0","07 Apr 2026 21:02:23:493","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260407 21:02:23.493","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3052566","Week I-4 (1)","9","Date of Visit","33539884","0","27 Apr 2026 21:21:42:053","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 21:21:42.053","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3082165","Induction Early Discontinuation (1)","12","Date of Visit","33964913","0","23 Apr 2026 19:33:20:110","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING TREATMENT AND CONTINUING TO FOLLOW-UP","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 19:33:20.110","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","3112964","Induction Safety Follow Up (1)","13","Date of Visit","34334335","0","21 May 2026 18:54:45:620","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","21 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260521 18:54:45.620","","" +"USA","9689","DD5-US10049","Gastroenterolgy Associates of Central GA","191145","US100492001","6330","2840201","Screening","3","Date of Visit","30688410","0","06 Feb 2026 14:47:07:273","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","17 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260206 14:47:07.273","","" +"USA","9689","DD5-US10049","Gastroenterolgy Associates of Central GA","199536","US100492002","6330","3020155","Screening","3","Date of Visit","33115912","0","15 Apr 2026 13:50:48:763","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 13:50:48.763","","" +"USA","10031","DD5-US10054","University Gastroenterology","200850","US100542001","6330","3045432","Screening","3","Date of Visit","33446964","0","01 Apr 2026 14:28:42:797","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","01 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260401 14:28:42.797","","" +"USA","10031","DD5-US10054","University Gastroenterology","202783","US100542002","6330","3085378","Screening","3","Date of Visit","34014641","0","22 Apr 2026 14:24:06:233","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","22 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260422 14:24:06.233","","" +"USA","10028","DD5-US10057","TLC Clinical Research Inc","198940","US100572001","6330","3007560","Screening","3","Date of Visit","32953106","0","14 Apr 2026 22:39:05:960","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","13 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260414 22:39:05.960","","" +"USA","10028","DD5-US10057","TLC Clinical Research Inc","200216","US100572002","6330","3033819","Screening","3","Date of Visit","33289495","0","06 May 2026 23:05:34:023","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","25 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260506 23:05:34.023","","" +"USA","9628","DD5-US10059","Om Research LLC","186304","US100592001","6330","2717332","Screening","3","Date of Visit","29241366","0","31 Dec 2025 01:15:41:757","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251231 01:15:41.757","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","179807","US100632001","6330","2595340","Screening","3","Date of Visit","27876840","0","28 Oct 2025 15:04:40:747","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","06 OCT 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251028 15:04:40.747","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","183786","US100632002","6330","2670830","Screening","3","Date of Visit","28708536","0","24 Nov 2025 20:09:46:563","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","05 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251124 20:09:46.563","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2681811","Screening","3","Date of Visit","28835217","0","07 Nov 2025 15:51:52:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 NOV 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251107 15:51:52.940","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2806154","Week I-0 (1)","7","Date of Visit","30251922","0","05 Dec 2025 17:14:46:273","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251205 17:14:46.273","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2806569","Week I-2 (1)","8","Date of Visit","30259206","0","18 Dec 2025 18:02:37:247","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20251218 18:02:37.247","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2843814","Week I-4 (1)","9","Date of Visit","30731239","0","06 Jan 2026 17:30:43:340","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260106 17:30:43.340","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2864645","Week I-8 (1)","10","Date of Visit","31024145","0","03 Feb 2026 14:37:28:363","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","2 FEB 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260203 14:37:28.363","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2912596","Week I-12 (1)","11","Date of Visit","31625298","0","27 Feb 2026 16:03:19:163","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260227 16:03:19.163","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","2963995","Week M-4 (1)","15","Date of Visit","32361551","0","27 Mar 2026 12:48:20:357","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 12:48:20.357","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","3038237","Week M-8 (1)","16","Date of Visit","33351966","0","24 Apr 2026 14:25:34:727","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 APR 2026","Visit Start Date","Telephone Call","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 14:25:34.727","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","184261","US100632003","6330","3093378","Week M-12 (1)","17","Date of Visit","34121848","0","22 May 2026 13:16:07:997","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 13:16:07.997","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","196543","US100632004","6330","2955839","Screening","3","Date of Visit","32252993","0","26 Feb 2026 18:29:51:517","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 18:29:51.517","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","200006","US100632005","6330","3029530","Screening","3","Date of Visit","33232557","0","24 Mar 2026 15:54:58:053","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260324 15:54:58.053","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","200006","US100632005","6330","3080881","Week I-0 (1)","7","Date of Visit","33947905","0","21 Apr 2026 14:45:03:337","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260421 14:45:03.337","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","200006","US100632005","6330","3081537","Week I-2 (1)","8","Date of Visit","33956504","0","05 May 2026 17:13:45:810","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","5 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260505 17:13:45.810","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","200006","US100632005","6330","3132445","Week I-4 (1)","9","Date of Visit","34638671","0","19 May 2026 14:17:29:563","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 14:17:29.563","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","200651","US100642001","6330","3041446","Screening","3","Date of Visit","33391653","0","15 Apr 2026 06:43:32:287","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260415 06:43:32.287","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","200651","US100642001","6330","3085233","Week I-0 (1)","7","Date of Visit","34013193","0","27 Apr 2026 14:31:22:310","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260427 14:31:22.310","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","200651","US100642001","6330","3112485","Week I-2 (1)","8","Date of Visit","34327189","0","11 May 2026 07:11:20:853","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260511 07:11:20.853","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","201706","US100642002","6330","3062759","Screening","3","Date of Visit","33666643","0","07 May 2026 09:57:23:553","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 09:57:23.553","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","201706","US100642002","6330","3138081","Week I-0 (1)","7","Date of Visit","34741682","0","12 May 2026 11:13:50:367","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260512 11:13:50.367","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","201706","US100642002","6330","3188308","Week I-2 (1)","8","Date of Visit","34973270","0","22 May 2026 09:52:46:927","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260522 09:52:46.927","","" +"USA","10023","DD5-US10064","Chevy Chase Clinical Research","210913","US100642003","6330","3194970","Screening","3","Date of Visit","35068365","0","19 May 2026 12:01:38:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 12:01:38.497","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193186","US100772001","6330","2885663","Screening","3","Date of Visit","31280736","0","02 Mar 2026 14:32:01:000","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260302 14:32:01.000","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","2893371","Screening","3","Date of Visit","31377506","0","18 May 2026 22:38:07:733","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 22:38:07.733","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","2963961","Week I-0 (1)","7","Date of Visit","32361097","0","03 Mar 2026 14:51:41:453","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260303 14:51:41.453","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","2974852","Week I-2 (1)","8","Date of Visit","32502299","0","18 May 2026 22:27:49:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260518 22:27:49.497","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","3038283","Week I-4 (1)","9","Date of Visit","33352441","0","27 Mar 2026 13:15:34:947","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 13:15:34.947","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193562","US100772002","6330","3038284","Week I-8 (1)","10","Date of Visit","33352460","0","24 Apr 2026 13:47:25:123","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260424 13:47:25.123","","" +"USA","9624","DD5-US10081","The Oregon Clinic","189784","US100812001","6330","2811837","Screening","3","Date of Visit","30327153","0","26 Jan 2026 21:53:28:060","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","08 DEC 2025","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260126 21:53:28.060","","" +"USA","9624","DD5-US10081","The Oregon Clinic","193369","US100812002","6330","2889006","Screening","3","Date of Visit","31320511","0","24 Feb 2026 21:06:53:203","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","20 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260224 21:06:53.203","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","2942322","Screening","3","Date of Visit","32055345","0","14 May 2026 18:58:05:400","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 18:58:05.400","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","3036675","Week I-0 (1)","7","Date of Visit","33328397","0","27 Mar 2026 02:19:11:180","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260327 02:19:11.180","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","3036950","Week I-2 (1)","8","Date of Visit","33331788","0","09 Apr 2026 20:45:43:803","Tier 1","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 20:45:43.803","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","3058431","Induction Early Discontinuation (1)","12","Date of Visit","33614762","0","09 Apr 2026 20:46:40:950","Tier 1","SDVTier","No","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","SUBJECT REFUSES TO RETURN.","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260409 20:46:40.950","","" +"USA","9624","DD5-US10081","The Oregon Clinic","210800","US100812004","6330","3192643","Screening","3","Date of Visit","35032295","0","13 May 2026 23:29:58:793","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260513 23:29:58.793","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","2955637","Screening","3","Date of Visit","32250275","0","25 Feb 2026 01:13:42:667","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260225 01:13:42.667","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","3041182","Week I-0 (1)","7","Date of Visit","33388170","0","30 Mar 2026 18:02:01:553","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260330 18:02:01.553","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","3041304","Week I-2 (1)","8","Date of Visit","33390015","0","20 Apr 2026 16:17:45:877","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","17 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 16:17:45.877","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","3078585","Week I-4 (1)","9","Date of Visit","33910412","0","28 Apr 2026 18:22:42:307","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260428 18:22:42.307","","" +"USA","10041","DD5-US10085","Blue Ridge Medical Research","196532","US100852001","6330","3125350","Unscheduled 20260430","59","Date of Visit","34522174","0","01 May 2026 12:07:48:077","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","30 APR 2026","Visit Start Date","","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","ELEVATED CK LABS. PER PI REPEAT LABS","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260501 12:07:48.077","","" +"USA","9257","DD5-US10089","Cotton O'Neil Digestive Health Center","196814","US100892001","6330","2961395","Screening","3","Date of Visit","32332882","0","12 Mar 2026 17:41:50:597","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260312 17:41:50.597","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2864713","Screening","3","Date of Visit","31024768","0","13 Jan 2026 20:29:43:887","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","06 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260113 20:29:43.887","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2892993","Week I-0 (1)","7","Date of Visit","31372535","0","22 Jan 2026 19:24:06:190","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260122 19:24:06.190","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2893670","Week I-2 (1)","8","Date of Visit","31380964","0","19 Feb 2026 20:48:20:357","Tier 1","SDVTier","No","Did this visit occur?","CONTINUING","Subjects Status","","Visit Start Date","","Type of Contact","Other","Reason this visit did not occur","","AE log line, start date, and term","SUBJECT WAS NOT AVAILABLE FOR THIS VISIT","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 20:48:20.357","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2947652","Week I-4 (1)","9","Date of Visit","32127999","0","19 Feb 2026 20:49:09:423","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260219 20:49:09.423","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","2947653","Week I-8 (1)","10","Date of Visit","32128015","0","23 Mar 2026 18:23:06:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260323 18:23:06.787","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","3026774","Week I-12 (1)","11","Date of Visit","33198850","0","16 Apr 2026 19:38:33:957","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260416 19:38:33.957","","" +"USA","10008","DD5-US10096","GCP Clinical Research","192222","US100962001","6330","3072218","Week M-4 (1)","15","Date of Visit","33814813","0","14 May 2026 17:51:36:487","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","14 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260514 17:51:36.487","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","2886116","Screening","3","Date of Visit","31285393","0","28 Jan 2026 18:15:49:053","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260128 18:15:49.053","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","2961335","Week I-0 (1)","7","Date of Visit","32332242","0","26 Feb 2026 21:57:42:470","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260226 21:57:42.470","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","2961671","Week I-2 (1)","8","Date of Visit","32336453","0","16 Mar 2026 20:47:03:190","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","16 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260316 20:47:03.190","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","3010980","Week I-4 (1)","9","Date of Visit","32998022","0","26 Mar 2026 19:59:27:050","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","26 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260326 19:59:27.050","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","3036768","Week I-8 (1)","10","Date of Visit","33329366","0","20 Apr 2026 16:07:05:730","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260420 16:07:05.730","","" +"USA","10008","DD5-US10096","GCP Clinical Research","193206","US100962002","6330","3078559","Week I-12 (1)","11","Date of Visit","33910119","0","19 May 2026 20:30:50:043","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260519 20:30:50.043","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","2980181","Screening","3","Date of Visit","32569435","0","05 Mar 2026 20:58:16:527","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","05 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260305 20:58:16.527","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","3058149","Week I-0 (1)","7","Date of Visit","33609892","0","10 Apr 2026 02:44:50:013","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260410 02:44:50.013","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","3058596","Week I-2 (1)","8","Date of Visit","33617441","0","23 Apr 2026 18:39:15:323","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","23 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260423 18:39:15.323","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","3089744","Week I-4 (1)","9","Date of Visit","34084368","0","07 May 2026 19:43:24:270","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 MAY 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260507 19:43:24.270","","" +"USA","10008","DD5-US10096","GCP Clinical Research","197700","US100962003","6330","2995372","Unscheduled 20260309","59","Date of Visit","32788335","0","09 Mar 2026 20:17:54:003","Tier 1","SDVTier","","Did this visit occur?","","Subjects Status","","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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260309 20:17:54.003","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","2933629","Screening","3","Date of Visit","31923152","0","16 Feb 2026 20:41:26:127","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","12 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260216 20:41:26.127","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","2988387","Week I-0 (1)","7","Date of Visit","32691620","0","10 Mar 2026 13:19:10:803","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","6 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260310 13:19:10.803","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","2997834","Week I-2 (1)","8","Date of Visit","32821283","0","19 Mar 2026 19:46:57:483","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","19 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260319 19:46:57.483","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","3020478","Week I-4 (1)","9","Date of Visit","33120089","0","02 Apr 2026 16:28:00:600","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260402 16:28:00.600","","" +"USA","10149","DD5-US10116","Nature Coast Clinical Research","195443","US101162001","6330","3047459","Week I-8 (1)","10","Date of Visit","33477265","0","04 May 2026 15:26:38:940","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","30 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","","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:49.023","GMT","20260504 15:26:38.940","","" diff --git a/Medidata/downloads/2026-05-25_12-01_EDC_UCO3001_ALL_TrialDispositionCompletion-Discontinuation_DataListing.csv b/Medidata/downloads/2026-05-25_12-01_EDC_UCO3001_ALL_TrialDispositionCompletion-Discontinuation_DataListing.csv new file mode 100644 index 0000000..4dc4d93 --- /dev/null +++ b/Medidata/downloads/2026-05-25_12-01_EDC_UCO3001_ALL_TrialDispositionCompletion-Discontinuation_DataListing.csv @@ -0,0 +1,262 @@ +"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" +"ARG","9171","DD5-AR10001","Cer Instituto Medico","197447","AR100012001","6330","2974778","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33956658","0","27 Apr 2026 17:05:44:047","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","3 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260427 17:05:44.047","","" +"ARG","9172","DD5-AR10006","GEDYT","191642","AR100062001","6330","2851778","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31627490","0","04 Feb 2026 13:52:32:357","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260204 13:52:32.357","","" +"ARG","9172","DD5-AR10006","GEDYT","194445","AR100062002","6330","2912678","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32251629","0","09 Mar 2026 12:39:39:493","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Other","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","SUBJECT WAS RANDOMIZED IN ERROR AND WAS NOT DOSED","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260309 12:39:39.493","","" +"ARG","9172","DD5-AR10006","GEDYT","196787","AR100062003","6330","2960886","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33606693","0","09 Apr 2026 14:15:17:657","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260409 14:15:17.657","","" +"ARG","9172","DD5-AR10006","GEDYT","197460","AR100062004","6330","2975083","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33606760","0","09 Apr 2026 14:16:47:543","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260409 14:16:47.543","","" +"ARG","9172","DD5-AR10006","GEDYT","199250","AR100062005","6330","3014097","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33323328","0","09 Apr 2026 14:18:00:477","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260409 14:18:00.477","","" +"ARG","9111","DD5-AR10014","HIGEA","194263","AR100142001","6330","2908963","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35202201","0","20 May 2026 18:16:51:867","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260520 18:16:51.867","","" +"ARG","9273","DD5-AR10018","Hospital Sor Maria Ludovica de La Plata","200627","AR100181002","6330","3040987","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34388760","0","11 May 2026 14:09:50:497","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260511 14:09:50.497","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","192233","AU100012001","6330","2864977","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34993689","0","20 May 2026 05:46:45:380","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","13 MAY 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Adverse Event","What was the subjects primary reason for trial discontinuation/completion?","#009 > 13MAY2026 > ACUTE SEVERE ULCERATIVE COLITIS","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260520 05:46:45.380","","" +"AUS","8929","DD5-AU10001","Monash Medical Centre","195930","AU100012002","6330","2942931","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32408616","0","03 Mar 2026 04:51:41:993","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 FEB 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260303 04:51:41.993","","" +"AUS","9669","DD5-AU10002","St Vincents Hospital Melbourne","190113","AU100022002","6330","2817862","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31084362","0","04 Feb 2026 03:05:59:867","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260204 03:05:59.867","","" +"AUS","9660","DD5-AU10004","Royal Melbourne Hospital","197572","AU100042001","6330","2977836","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34643436","0","06 May 2026 04:11:32:157","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","To pursue alternative treatment","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260506 04:11:32.157","","" +"AUS","9695","DD5-AU10009","Mater Hospital Brisbane","189868","AU100092002","6330","2813953","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32545886","0","19 Mar 2026 06:16:01:317","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260319 06:16:01.317","","" +"AUS","9637","DD5-AU10012","John Hunter Hospital","196826","AU100122001","6330","2961648","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33542667","0","08 Apr 2026 02:10:46:260","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260408 02:10:46.260","","" +"AUS","9637","DD5-AU10012","John Hunter Hospital","201856","AU100122002","6330","3066179","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33713740","0","15 Apr 2026 03:55:23:813","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260415 03:55:23.813","","" +"BEL","9583","DD5-BE10001","Universitair Ziekenhuis Leuven","196746","BE100012002","6330","2960079","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33490373","0","03 Apr 2026 13:42:02:800","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260403 13:42:02.800","","" +"BEL","9614","DD5-BE10002","CHU Saint-Pierre","193419","BE100022001","6330","2890006","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34935835","0","11 May 2026 13:22:12:433","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260511 13:22:12.433","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","200603","BR100182001","6330","3040674","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34742663","0","07 May 2026 17:51:16:830","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260507 17:51:16.830","","" +"BRA","9285","DD5-BR10018","Hospital das Clinicas da Faculdade de Medicina de Ribeirao Preto","201067","BR100182003","6330","3049796","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34743461","0","07 May 2026 18:49:55:777","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260507 18:49:55.777","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","197670","BR100222003","6330","2979591","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34745179","0","07 May 2026 20:35:20:980","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260507 20:35:20.980","","" +"BRA","9290","DD5-BR10022","CECIP Jau - Centro de Estudos Clínicos do Interior Paulista Ltda","210612","BR100222009","6330","3189097","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35140234","0","18 May 2026 21:18:26:477","Tier 5","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260518 21:18:26.477","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","197782","BR100302001","6330","2981970","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33419456","0","09 Apr 2026 12:24:45:730","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260409 12:24:45.730","","" +"BRA","9822","DD5-BR10030","Hospital Israelita Albert Einstein","198826","BR100302002","6330","3005033","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34025418","0","15 May 2026 18:25:47:277","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260515 18:25:47.277","","" +"CAN","9757","DD5-CA10004","GIRI Gastrointestinal Research Institute","198515","CA100042002","6330","2998651","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33911633","0","20 Apr 2026 17:26:41:330","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","1 APR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260420 17:26:41.330","","" +"CAN","9722","DD5-CA10006","ABP Research Services Corp.","187326","CA100062001","6330","2762649","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31027852","0","08 Jan 2026 16:03:42:053","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260108 16:03:42.053","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","194066","CA100072001","6330","2904879","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32836094","0","05 May 2026 18:54:55:527","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","02 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260505 18:54:55.527","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","195441","CA100072002","6330","2933584","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32998072","0","16 Mar 2026 20:52:13:253","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","09 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260316 20:52:13.253","","" +"CAN","9706","DD5-CA10007","South Edmonton Gastroenterology","198335","CA100072004","6330","2995389","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34573973","0","04 May 2026 17:35:26:247","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260504 17:35:26.247","","" +"CAN","9751","DD5-CA10008","London Digestive Disease Institute","187054","CA100082001","6330","2756460","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31098928","0","09 Jan 2026 16:15:44:767","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260109 16:15:44.767","","" +"CAN","9712","DD5-CA10010","Clinique IMD","195889","CA100102001","6330","2942114","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33451065","0","19 May 2026 13:04:53:237","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","29 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260519 13:04:53.237","","" +"CAN","9724","DD5-CA10012","West GTA Endoscopy","189365","CA100122001","6330","2802142","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34327348","0","27 Apr 2026 17:39:52:487","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260427 17:39:52.487","","" +"CHE","9510","DD5-CH10003","HOCH Health Ostschweiz Kantonsspital St.Gallen","202541","CH100032001","6330","3079992","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34378885","0","28 Apr 2026 14:19:02:857","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 APR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260428 14:19:02.857","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","187091","CN100012001","6330","2757152","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31017082","0","06 Jan 2026 11:35:34:877","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260106 11:35:34.877","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","188586","CN100012002","6330","2789183","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33308304","0","27 Apr 2026 07:36:54:690","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260427 07:36:54.690","","" +"CHN","9034","DD5-CN10001","Sir Run Run Shaw Hospital Zhejiang University School of Medicine","190471","CN100012003","6330","2826665","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34311367","0","22 May 2026 03:36:37:540","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Lack of Improvement","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260522 03:36:37.540","","" +"CHN","9385","DD5-CN10002","The First Affiliated Hospital Sun Yat sen University","192151","CN100022001","6330","2863172","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34400880","0","11 May 2026 09:01:24:457","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","22 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Lack of Improvement","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260511 09:01:24.457","","" +"CHN","9577","DD5-CN10004","The Second Affiliated Hospital of Guangzhou Medical University","192890","CN100042001","6330","2879452","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32374479","0","02 Mar 2026 08:39:13:407","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260302 08:39:13.407","","" +"CHN","9339","DD5-CN10013","Lanzhou University Second Hospital","199434","CN100132002","6330","3017916","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35264187","0","22 May 2026 08:51:33:267","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260522 08:51:33.267","","" +"CHN","9477","DD5-CN10015","Wuxi People s Hospital","191658","CN100152001","6330","2852188","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31033948","0","13 Feb 2026 07:01:47:107","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","31 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260213 07:01:47.107","","" +"CHN","9785","DD5-CN10022","Zhongda Hospital Southeast University","193486","CN100222001","6330","2891681","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31589214","0","03 Feb 2026 03:36:52:420","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 JAN 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260203 03:36:52.420","","" +"CHN","9529","DD5-CN10023","Meihekou Central Hospital","194579","CN100232001","6330","2915695","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33054868","0","18 Mar 2026 08:48:33:040","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260318 08:48:33.040","","" +"CHN","9321","DD5-CN10024","Capital Medical University, Beijing Friendship Hospital","197147","CN100242002","6330","2968149","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33694412","0","14 Apr 2026 10:22:18:690","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","31 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260414 10:22:18.690","","" +"CHN","9748","DD5-CN10025","Heilongjiang Provincial Hospital","199143","CN100252001","6330","3011827","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34392489","0","29 Apr 2026 09:13:43:840","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260429 09:13:43.840","","" +"CHN","9748","DD5-CN10025","Heilongjiang Provincial Hospital","200525","CN100252002","6330","3039851","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33691788","0","29 Apr 2026 05:28:02:010","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260429 05:28:02.010","","" +"CHN","9236","DD5-CN10027","The First People's Hospital of Foshan","194314","CN100272002","6330","2909915","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33348431","0","27 Mar 2026 10:34:15:530","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260327 10:34:15.530","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193488","CN100312001","6330","2891733","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32414575","0","03 Mar 2026 07:37:00:573","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","13 FEB 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260303 07:37:00.573","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","193767","CN100312002","6330","2897743","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35153700","0","19 May 2026 09:08:21:077","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260519 09:08:21.077","","" +"CHN","9024","DD5-CN10033","China Japan Friendship Hospital","193388","CN100332002","6330","2889344","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31588933","0","08 Feb 2026 07:39:21:637","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260208 07:39:21.637","","" +"CHN","9479","DD5-CN10036","Changzhou No 2 Peoples Hospital","199870","CN100361001","6330","3027060","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33430088","0","01 Apr 2026 05:17:59:507","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","28 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260401 05:17:59.507","","" +"CHN","9189","DD5-CN10039","The First Affiliated Hospital of Ningbo University","191584","CN100392001","6330","2850008","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30987511","0","05 Jan 2026 08:17:50:930","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260105 08:17:50.930","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880183","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32591990","0","06 Mar 2026 10:59:27:423","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260306 10:59:27.423","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894250","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32360263","0","27 Feb 2026 14:27:27:820","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260227 14:27:27.820","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197226","CZ100222004","6330","2969803","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33232142","0","24 Mar 2026 12:12:25:007","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260324 12:12:25.007","","" +"DEU","9561","DD5-DE10001","Universitaetsklinik Erlangen","203843","DE100012001","6330","3111437","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35209327","0","21 May 2026 05:38:49:097","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","13 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260521 05:38:49.097","","" +"DEU","9474","DD5-DE10010","Medizinische Hochschule Hannover","202869","DE100102004","6330","3087548","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35094383","0","15 May 2026 11:00:25:827","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260515 11:00:25.827","","" +"DEU","9471","DD5-DE10023","Medizinisches Versorgungszentrum (MVZ) Dachau","202679","DE100232001","6330","3083103","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35222600","0","21 May 2026 10:21:57:130","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260521 10:21:57.130","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","193876","DE100262001","6330","2900206","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32562692","0","05 Mar 2026 12:58:51:377","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260305 12:58:51.377","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","193965","DE100262002","6330","2902436","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32562807","0","05 Mar 2026 13:02:38:880","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260305 13:02:38.880","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","194053","DE100262003","6330","2904528","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32562913","0","05 Mar 2026 13:10:37:917","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260305 13:10:37.917","","" +"DEU","9441","DD5-DE10026","Praxisgemeinschaft Jerichow","194933","DE100262004","6330","2923385","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33726581","0","15 Apr 2026 10:03:28:823","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260415 10:03:28.823","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","191602","ES100042001","6330","2850598","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34081002","0","07 May 2026 14:49:09:607","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","22 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260507 14:49:09.607","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","193890","ES100042002","6330","2900487","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32532597","0","04 Mar 2026 14:53:14:403","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260304 14:53:14.403","","" +"ESP","9424","DD5-ES10004","HOSP. UNIV. I POLITECNI LA FE","195830","ES100042003","6330","2940858","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32532496","0","04 Mar 2026 14:50:50:070","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 FEB 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260304 14:50:50.070","","" +"ESP","9390","DD5-ES10011","HOSP. VIRGEN MACARENA","199794","ES100112002","6330","3025358","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33537584","0","09 Apr 2026 10:09:47:933","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260409 10:09:47.933","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","198403","FR100012001","6330","2996658","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35129073","0","18 May 2026 12:04:18:087","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260518 12:04:18.087","","" +"FRA","9074","DD5-FR10001","CHU Saint Etienne Hopital Nord","202860","FR100012002","6330","3087338","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35159205","0","19 May 2026 10:48:12:567","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260519 10:48:12.567","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","189970","FR100022001","6330","2815038","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31671230","0","05 Feb 2026 13:25:47:180","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","5 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260205 13:25:47.180","","" +"FRA","9241","DD5-FR10002","CHU Lyon Sud","190656","FR100022003","6330","2831075","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31387814","0","05 Mar 2026 09:34:43:407","Tier 5","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","18 FEB 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Adverse Event","What was the subjects primary reason for trial discontinuation/completion?","#001 > 21JAN2026 > WORSENING OF UC","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260305 09:34:43.407","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","190687","FR100052001","6330","2831618","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31343576","0","21 Jan 2026 13:47:40:633","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260121 13:47:40.633","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","194885","FR100052002","6330","2922312","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33609361","0","09 Apr 2026 15:49:23:623","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260409 15:49:23.623","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195418","FR100052003","6330","2933108","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32986981","0","16 Mar 2026 13:19:58:750","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260316 13:19:58.750","","" +"FRA","9120","DD5-FR10005","CHRU de Nancy - Hopitaux de Brabois","195823","FR100052004","6330","2940744","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33636092","0","10 Apr 2026 15:57:07:707","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260410 15:57:07.707","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","191747","FR100072001","6330","2853909","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31733505","0","06 Feb 2026 14:13:52:097","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260206 14:13:52.097","","" +"FRA","9188","DD5-FR10007","APHP - Hopital Henri Mondor","196329","FR100072002","6330","2951494","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32992652","0","16 Mar 2026 15:40:11:127","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260316 15:40:11.127","","" +"FRA","9121","DD5-FR10010","CHU de Clermont Ferrand - Site Estaing","193256","FR100102001","6330","2886977","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32531934","0","04 Mar 2026 14:21:30:750","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260304 14:21:30.750","","" +"FRA","9076","DD5-FR10011","CHU de Montpellier Hopital Saint Eloi","192383","FR100112003","6330","2868302","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31594114","0","03 Feb 2026 08:26:43:040","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 JAN 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260203 08:26:43.040","","" +"FRA","9077","DD5-FR10012","Institut Prive MICI Clinique des Cedres","200320","FR100122002","6330","3035851","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34891368","0","11 May 2026 10:09:07:020","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","8 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260511 10:09:07.020","","" +"FRA","9147","DD5-FR10013","Jules Verne Clinic","191451","FR100132001","6330","2846487","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34928682","0","11 May 2026 11:47:27:707","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260511 11:47:27.707","","" +"FRA","9046","DD5-FR10016","CHU de Limoges Hopital Dupuytren","192930","FR100162003","6330","2880417","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33989081","0","20 May 2026 13:21:32:287","Tier 5","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260520 13:21:32.287","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","196428","GB100012001","6330","2953503","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33958862","0","21 Apr 2026 16:11:51:260","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260421 16:11:51.260","","" +"GBR","8955","DD5-GB10002","Fairfield General Hospital","192792","GB100022001","6330","2877316","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32823513","0","18 Mar 2026 15:46:13:887","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260318 15:46:13.887","","" +"GBR","8978","DD5-GB10005","Addenbrooke's Hospital","198792","GB100052001","6330","3004069","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33703152","0","14 Apr 2026 13:40:30:687","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","01 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260414 13:40:30.687","","" +"GBR","9001","DD5-GB10008","Whiston Hospital","198475","GB100082002","6330","2997710","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33701017","0","14 Apr 2026 12:33:17:737","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260414 12:33:17.737","","" +"GBR","8987","DD5-GB10013","Whipps Cross University Hospital","192804","GB100132001","6330","2877533","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33179373","0","23 Mar 2026 10:06:10:283","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260323 10:06:10.283","","" +"GRC","9613","DD5-GR10001","Thoracic General Hospital Of Athens I Sotiria","201143","GR100012002","6330","3051292","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35269672","0","22 May 2026 11:28:59:247","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260522 11:28:59.247","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","191034","GR100032001","6330","2837753","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31583434","0","03 Feb 2026 09:44:20:980","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260203 09:44:20.980","","" +"HUN","9040","DD5-HU10001","Semmelweis Egyetem, Belgyogyaszati es Hematologiai Klinika","196579","HU100012003","6330","2956651","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33706974","0","20 Apr 2026 15:56:50:787","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260420 15:56:50.787","","" +"HUN","9096","DD5-HU10003","Pannónia Magánorvosi Centrum Kft","197620","HU100032001","6330","2978343","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33373653","0","30 Mar 2026 08:55:10:083","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260330 08:55:10.083","","" +"HUN","9858","DD5-HU10011","Vasutegeszsegugyi Nonprofit Kozhasznu Kft","194650","HU100112001","6330","2916965","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33505881","0","10 Apr 2026 16:56:26:457","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260410 16:56:26.457","","" +"HUN","9858","DD5-HU10011","Vasutegeszsegugyi Nonprofit Kozhasznu Kft","195168","HU100112002","6330","2928478","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33505959","0","10 Apr 2026 16:58:30:613","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260410 16:58:30.613","","" +"ISR","9396","DD5-IL10003","Tel Aviv Sourasky Medical Center","184344","IL100032001","6330","2683307","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30980213","0","10 Feb 2026 17:35:31:927","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260210 17:35:31.927","","" +"ISR","9803","DD5-IL10006","Bnai Zion Medical Center","192555","IL100062001","6330","2871927","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31415624","0","26 Jan 2026 07:49:20:110","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260126 07:49:20.110","","" +"IND","9559","DD5-IN10007","S. R. Kalla Memorial General Hospital","200687","IN100072003","6330","3041979","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34703059","0","08 May 2026 06:57:10:480","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","5 MAY 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260508 06:57:10.480","","" +"IND","9493","DD5-IN10008","Asian Institute Of Gastroenterology","202365","IN100082004","6330","3076339","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34995603","0","13 May 2026 06:08:08:423","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","04 MAY 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","To pursue alternative treatment","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260513 06:08:08.423","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","198766","IT100042001","6330","3003372","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34716126","0","19 May 2026 14:25:07:987","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260519 14:25:07.987","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","199328","IT100042002","6330","3015726","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34327375","0","27 Apr 2026 14:38:54:297","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260427 14:38:54.297","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","200107","IT100042003","6330","3031639","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35166844","0","19 May 2026 14:26:17:523","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260519 14:26:17.523","","" +"ITA","9227","DD5-IT10004","Ospedale San Raffaele di Milano","201982","IT100042005","6330","3069091","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35166932","0","19 May 2026 14:35:34:183","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260519 14:35:34.183","","" +"ITA","9205","DD5-IT10011","Azienda Ospedaliera San Camillo-Forlanini","196707","IT100112001","6330","2959280","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32880182","0","31 Mar 2026 11:37:54:360","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260331 11:37:54.360","","" +"JPN","9230","DD5-JP10002","Yokohama City University Medical Center","193594","JP100022001","6330","2894335","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35087392","0","15 May 2026 09:22:24:500","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260515 09:22:24.500","","" +"JPN","9231","DD5-JP10005","National Hospital Organization Shizuoka Medical Center","187078","JP100052002","6330","2756963","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31196083","0","28 Jan 2026 10:27:21:203","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260128 10:27:21.203","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","196944","JP100082003","6330","2964302","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33430101","0","01 Apr 2026 05:17:27:757","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 MAR 2026","Disposition Date","Other","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","USED ADT DURING THE SCREENING PERIOD.","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260401 05:17:27.757","","" +"JPN","9233","DD5-JP10008","Tsujinaka Hospital Kashiwanoha","201198","JP100082005","6330","3052657","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35154113","0","19 May 2026 09:13:52:503","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260519 09:13:52.503","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","185807","JP100102002","6330","2707420","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","29736606","0","28 Nov 2025 01:03:59:320","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20251128 01:03:59.320","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","190655","JP100102004","6330","2831049","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31635706","0","25 Mar 2026 02:48:55:513","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","13 FEB 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260325 02:48:55.513","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","192945","JP100102006","6330","2880819","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35110297","0","18 May 2026 02:43:49:777","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260518 02:43:49.777","","" +"JPN","9112","DD5-JP10010","Aoyama Naika Clinic","194357","JP100102007","6330","2910741","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32793896","0","10 Mar 2026 08:06:52:490","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260310 08:06:52.490","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","183886","JP100132002","6330","2672752","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30267999","0","08 Dec 2025 00:55:15:767","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20251208 00:55:15.767","","" +"JPN","9090","DD5-JP10013","Japanese Red Cross Osaka Hospital","184175","JP100132003","6330","2679543","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","28853484","0","28 Nov 2025 05:21:22:540","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","7 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20251128 05:21:22.540","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","192340","JP100182001","6330","2867223","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31748598","0","09 Feb 2026 05:48:41:420","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","09 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260209 05:48:41.420","","" +"JPN","9176","DD5-JP10018","Juntendo University Hospital Urayasu","193223","JP100182002","6330","2886387","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31662794","0","05 Feb 2026 01:58:56:250","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","4 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260205 01:58:56.250","","" +"JPN","9069","DD5-JP10020","Hokkaido P.W.F.A.C. Sapporo-Kosei General Hospital","190638","JP100202001","6330","2830724","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34524312","0","01 May 2026 05:16:33:540","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260501 05:16:33.540","","" +"JPN","9113","DD5-JP10021","Takagi Clinic","199104","JP100212001","6330","3011113","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33006814","0","14 Apr 2026 06:08:00:857","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260414 06:08:00.857","","" +"JPN","9234","DD5-JP10022","Nakagami Hospital","182603","JP100222001","6330","2648918","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30543330","0","12 Dec 2025 07:10:47:443","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","5 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20251212 07:10:47.443","","" +"JPN","9117","DD5-JP10048","National Hospital Organization Osaka National Hospital","188315","JP100482001","6330","2783565","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33052675","0","31 Mar 2026 08:59:39:553","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","31 MAR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260331 08:59:39.553","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198036","JP100532001","6330","2988739","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33292826","0","26 Mar 2026 02:48:01:293","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260326 02:48:01.293","","" +"JPN","9073","DD5-JP10053","Takano Hospital","198533","JP100532002","6330","2999042","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33713348","0","15 Apr 2026 05:37:44:100","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260415 05:37:44.100","","" +"JPN","9073","DD5-JP10053","Takano Hospital","211022","JP100532005","6330","3197674","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35249059","0","22 May 2026 06:53:40:803","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260522 06:53:40.803","","" +"KOR","9335","DD5-KR10001","Samsung Medical Center","196383","KR100012003","6330","2952470","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33313495","0","24 Apr 2026 07:17:12:627","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260424 07:17:12.627","","" +"KOR","9350","DD5-KR10005","Yeungnam University Hospital","195133","KR100052001","6330","2927788","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32544561","0","05 Mar 2026 06:17:58:577","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260305 06:17:58.577","","" +"KOR","9331","DD5-KR10006","Kyung Hee University Hospital","199867","KR100062001","6330","3027021","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34950766","0","12 May 2026 01:59:53:367","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260512 01:59:53.367","","" +"KOR","9338","DD5-KR10011","Inje University Haeundae Paik Hospital","197473","KR100112003","6330","2975407","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33338945","0","27 Mar 2026 06:43:58:373","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260327 06:43:58.373","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","198528","MY100012004","6330","2998941","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34888517","0","11 May 2026 08:03:24:800","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260511 08:03:24.800","","" +"MYS","9017","DD5-MY10001","University Malaya Medical Centre","201205","MY100012006","6330","3052910","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34889504","0","11 May 2026 08:45:30:720","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","08 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260511 08:45:30.720","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","196381","MY100072004","6330","2952422","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33643445","0","13 Apr 2026 00:12:29:363","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","06 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260413 00:12:29.363","","" +"MYS","9005","DD5-MY10007","Hospital Kuala Lumpur","200231","MY100072005","6330","3034069","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33643447","0","13 Apr 2026 00:13:29:247","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260413 00:13:29.247","","" +"NLD","9619","DD5-NL10005","Radboud Umcn","200679","NL100052001","6330","3041884","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34979686","0","12 May 2026 13:38:09:227","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260512 13:38:09.227","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192399","PL100012001","6330","2868561","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31519587","0","29 Jan 2026 13:15:44:933","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260129 13:15:44.933","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","192829","PL100012004","6330","2878026","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31726762","0","06 Feb 2026 10:07:45:367","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","5 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260206 10:07:45.367","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193787","PL100012008","6330","2898119","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32395454","0","02 Mar 2026 14:20:58:940","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260302 14:20:58.940","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193895","PL100012009","6330","2900654","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32550971","0","05 Mar 2026 09:11:38:980","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","4 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260305 09:11:38.980","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","193916","PL100012010","6330","2901134","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32271278","0","25 Feb 2026 09:38:25:340","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260225 09:38:25.340","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194440","PL100012011","6330","2912609","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31893306","0","12 Feb 2026 10:16:20:180","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260212 10:16:20.180","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194508","PL100012012","6330","2914074","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32551002","0","05 Mar 2026 09:13:40:090","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","4 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260305 09:13:40.090","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","194694","PL100012014","6330","2917889","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32107821","0","19 Feb 2026 10:38:49:267","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260219 10:38:49.267","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","196420","PL100012017","6330","2953335","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33472502","0","02 Apr 2026 11:35:12:077","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","31 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260402 11:35:12.077","","" +"POL","9892","DD5-PL10001","Medical Network WIP Warsaw IBD Point Profesor Kierkus","202625","PL100012019","6330","3081766","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35023912","0","13 May 2026 12:29:02:180","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260513 12:29:02.180","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","193255","PL100022005","6330","2886968","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31971384","0","13 Feb 2026 10:49:37:037","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260213 10:49:37.037","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","195964","PL100022007","6330","2943668","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32588800","0","06 Mar 2026 10:09:10:313","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","04 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260306 10:09:10.313","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","198771","PL100022011","6330","3003470","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33103419","0","19 Mar 2026 10:29:50:473","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260319 10:29:50.473","","" +"POL","9931","DD5-PL10002","Centrum Medyczne Medis ManerMed Sp Z O O","201978","PL100022016","6330","3068938","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34592493","0","05 May 2026 09:06:49:447","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260505 09:06:49.447","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","194526","PL100042001","6330","2914496","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32431305","0","03 Mar 2026 10:10:04:133","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260303 10:10:04.133","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","199247","PL100042002","6330","3013978","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33900915","0","20 Apr 2026 12:12:01:363","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260420 12:12:01.363","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","199257","PL100042003","6330","3014252","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34392549","0","29 Apr 2026 05:22:18:357","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260429 05:22:18.357","","" +"POL","9893","DD5-PL10004","Centrum Medyczne 'Medyk' Sp. z o.o. K.","201819","PL100042004","6330","3065077","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34393652","0","29 Apr 2026 06:22:26:747","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260429 06:22:26.747","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","193444","PL100052003","6330","2890663","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32269274","0","25 Feb 2026 08:54:27:487","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","13 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260225 08:54:27.487","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","196501","PL100052005","6330","2955043","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33611458","0","10 Apr 2026 11:08:04:547","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260410 11:08:04.547","","" +"POL","9863","DD5-PL10005","GASTROMED Sp. z o.o.","200291","PL100052011","6330","3035319","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35046783","0","15 May 2026 08:47:22:317","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","22 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260515 08:47:22.317","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","190931","PL100062001","6330","2836065","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31640464","0","04 Feb 2026 08:53:52:080","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260204 08:53:52.080","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193344","PL100062004","6330","2888548","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34668990","0","06 May 2026 10:04:31:317","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260506 10:04:31.317","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193468","PL100062006","6330","2891145","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34669438","0","06 May 2026 10:35:40:727","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260506 10:35:40.727","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","193832","PL100062007","6330","2899104","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34670801","0","06 May 2026 10:38:37:187","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260506 10:38:37.187","","" +"POL","9907","DD5-PL10006","Centrum Medyczne Plejady","195998","PL100062010","6330","2944614","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34734049","0","07 May 2026 12:25:54:497","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260507 12:25:54.497","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200282","PL100072009","6330","3035128","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33990096","0","22 Apr 2026 10:47:42:513","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260422 10:47:42.513","","" +"POL","9878","DD5-PL10007","Centrum Medyczne Oporow","200834","PL100072013","6330","3045115","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35193790","0","20 May 2026 12:23:40:080","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260520 12:23:40.080","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","191226","PL100082001","6330","2842096","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31141724","0","03 Apr 2026 11:47:56:833","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260403 11:47:56.833","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","194026","PL100082003","6330","2903859","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33474014","0","03 Apr 2026 12:07:18:357","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260403 12:07:18.357","","" +"POL","9879","DD5-PL10008","Sonomed Sp. z o.o.","197064","PL100082004","6330","2966378","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33474017","0","03 Apr 2026 12:09:01:283","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260403 12:09:01.283","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","194330","PL100092001","6330","2910213","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32197760","0","24 Feb 2026 05:10:52:853","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260224 05:10:52.853","","" +"POL","9864","DD5-PL10009","EMC Instytut Medyczny S A Penta Hospitals Przychodnie","196429","PL100092003","6330","2953527","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34716059","0","07 May 2026 12:58:54:390","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260507 12:58:54.390","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","192780","PL100102002","6330","2876975","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33108982","0","19 Mar 2026 12:49:01:460","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","3 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260319 12:49:01.460","","" +"POL","9920","DD5-PL10010","Bodyclinic Sp. z o.o. sp. k","194922","PL100102006","6330","2923109","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33141899","0","20 Mar 2026 13:28:20:267","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260320 13:28:20.267","","" +"POL","9894","DD5-PL10012","ETG Zamosc","193049","PL100122001","6330","2883047","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31853064","0","11 Feb 2026 11:12:01:353","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260211 11:12:01.353","","" +"POL","9894","DD5-PL10012","ETG Zamosc","199767","PL100122004","6330","3024867","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34348958","0","28 Apr 2026 08:19:23:457","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260428 08:19:23.457","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192416","PL100132003","6330","2868838","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31330862","0","13 Feb 2026 11:16:32:323","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260213 11:16:32.323","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192693","PL100132004","6330","2874887","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31854608","0","13 Feb 2026 11:18:47:583","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260213 11:18:47.583","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","192716","PL100132005","6330","2875564","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31854638","0","13 Feb 2026 11:19:14:313","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260213 11:19:14.313","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","196332","PL100132009","6330","2951619","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32934395","0","13 Mar 2026 08:46:18:837","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","13 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260313 08:46:18.837","","" +"POL","9895","DD5-PL10013","Twoja Przychodnia - Szczecinskie Centrum Medyczne","198671","PL100132010","6330","3001448","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33522624","0","07 Apr 2026 09:12:45:867","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260407 09:12:45.867","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191557","PL100142001","6330","2849151","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31264541","0","19 Jan 2026 07:44:27:040","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260119 07:44:27.040","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","191857","PL100142002","6330","2856939","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31264524","0","19 Jan 2026 07:45:11:153","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260119 07:45:11.153","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","193963","PL100142004","6330","2902398","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32414574","0","03 Mar 2026 07:34:56:987","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260303 07:34:56.987","","" +"POL","9908","DD5-PL10014","NZOZ Centrum Medyczne KERmed","196096","PL100142008","6330","2946601","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33318398","0","26 Mar 2026 13:01:57:833","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260326 13:01:57.833","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","195230","PL100152001","6330","2929865","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35185440","0","20 May 2026 08:31:49:967","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","12 MAY 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260520 08:31:49.967","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198502","PL100152002","6330","2998396","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35010269","0","20 May 2026 08:21:56:767","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","22 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Adverse Event","What was the subjects primary reason for trial discontinuation/completion?","#001 > 16APR2026 > EXACERBATION OF UC","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260520 08:21:56.767","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","198508","PL100152003","6330","2998468","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33630918","0","20 Apr 2026 15:10:23:600","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260420 15:10:23.600","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","202786","PL100152007","6330","3085453","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35185518","0","20 May 2026 08:34:50:790","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260520 08:34:50.790","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","190715","PL100162001","6330","2832041","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31236428","0","16 Jan 2026 12:33:28:273","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260116 12:33:28.273","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","192592","PL100162003","6330","2872547","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32239267","0","24 Feb 2026 12:21:55:913","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260224 12:21:55.913","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","193860","PL100162006","6330","2899883","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32043256","0","17 Feb 2026 12:28:49:597","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260217 12:28:49.597","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","193870","PL100162007","6330","2900069","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31690601","0","12 Feb 2026 12:48:41:793","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","2 FEB 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260212 12:48:41.793","","" +"POL","9897","DD5-PL10016","Endoskopia Sp z o.o.","195193","PL100162011","6330","2929007","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32183337","0","23 Feb 2026 15:11:32:163","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260223 15:11:32.163","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","192870","PL100192001","6330","2879040","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32564629","0","05 Mar 2026 13:37:51:530","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","05 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260305 13:37:51.530","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","193115","PL100192002","6330","2884226","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32564602","0","05 Mar 2026 13:36:44:577","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260305 13:36:44.577","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","194516","PL100192003","6330","2914271","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32383205","0","02 Mar 2026 10:53:45:243","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","25 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260302 10:53:45.243","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","195310","PL100192005","6330","2931175","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33043372","0","17 Mar 2026 16:00:51:770","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260317 16:00:51.770","","" +"POL","9898","DD5-PL10019","Vita Longa Sp z o o","202550","PL100192006","6330","3080169","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34999501","0","13 May 2026 06:44:30:427","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","08 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260513 06:44:30.427","","" +"POL","9899","DD5-PL10021","RiverMED","200106","PL100212002","6330","3031619","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33992941","0","22 Apr 2026 11:29:55:247","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260422 11:29:55.247","","" +"POL","9899","DD5-PL10021","RiverMED","200114","PL100212003","6330","3031760","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35122319","0","18 May 2026 09:33:41:727","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260518 09:33:41.727","","" +"POL","9899","DD5-PL10021","RiverMED","202202","PL100212005","6330","3072965","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35163199","0","19 May 2026 12:38:58:843","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260519 12:38:58.843","","" +"POL","9917","DD5-PL10023","Szpital Grochowski Im Dr Med Rafala Masztaka Sp Z O O","199170","PL100232001","6330","3012421","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33421364","0","14 May 2026 08:09:08:760","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260514 08:09:08.760","","" +"POL","9934","DD5-PL10024","Clinical Best Solutions Warszawa","197453","PL100242001","6330","2974892","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34963745","0","12 May 2026 09:13:38:673","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260512 09:13:38.673","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","195802","PL100252001","6330","2940369","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32999823","0","17 Mar 2026 01:15:29:440","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260317 01:15:29.440","","" +"POL","9935","DD5-PL10025","WSD MEDI Clinical Sp. z o. o.","202195","PL100252002","6330","3072810","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34743549","0","07 May 2026 19:03:46:870","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","7 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260507 19:03:46.870","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","198505","PL100262002","6330","2998429","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34972829","0","18 May 2026 11:14:49:967","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 MAR 2026","Disposition Date","Other","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","SUBJECT IS A SCREEN FAILED","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260518 11:14:49.967","","" +"POL","9869","DD5-PL10026","Twoja Przychodnia","198512","PL100262003","6330","2998528","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34973801","0","18 May 2026 11:09:15:800","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 MAR 2026","Disposition Date","Other","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","SUBJECT IS A SCREEN FAILED","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260518 11:09:15.800","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191313","PL100282002","6330","2843704","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33071325","0","18 Mar 2026 11:24:14:693","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260318 11:24:14.693","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","191333","PL100282004","6330","2843962","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33072339","0","18 Mar 2026 11:42:17:427","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","03 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260318 11:42:17.427","","" +"POL","9866","DD5-PL10028","Medon Clinical Research","192926","PL100282006","6330","2880278","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33073908","0","18 Mar 2026 12:06:19:717","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260318 12:06:19.717","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198761","PL100302003","6330","3003301","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34011564","0","28 Apr 2026 07:47:40:753","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260428 07:47:40.753","","" +"POL","9910","DD5-PL10030","Medicus Zaniewski i Bilski","198784","PL100302004","6330","3003851","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34354125","0","28 Apr 2026 09:13:52:163","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260428 09:13:52.163","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","194893","PL100351002","6330","2922659","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32805773","0","10 Mar 2026 09:23:52:637","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260310 09:23:52.637","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","198286","PL100351003","6330","2994434","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33600791","0","09 Apr 2026 11:39:53:957","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260409 11:39:53.957","","" +"POL","9882","DD5-PL10035","Instytut Pomnik Centrum Zdrowia Dziecka","203868","PL100351007","6330","3111908","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34964664","0","13 May 2026 10:40:59:030","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260513 10:40:59.030","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","193707","PL100362008","6330","2897036","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31967387","0","14 Feb 2026 21:26:39:230","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","28 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260214 21:26:39.230","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","194274","PL100362009","6330","2909203","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32175848","0","14 May 2026 14:01:47:997","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260514 14:01:47.997","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","197549","PL100362012","6330","2977326","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33605211","0","09 Apr 2026 13:37:41:813","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260409 13:37:41.813","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197651","PT100011002","6330","2979195","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33449347","0","05 May 2026 13:13:47:647","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260505 13:13:47.647","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194229","PT100012001","6330","2908294","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33387806","0","20 Apr 2026 15:18:07:367","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260420 15:18:07.367","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","194240","PT100012002","6330","2908528","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33415487","0","20 Apr 2026 15:19:30:527","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","09 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260420 15:19:30.527","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","196294","PT100012004","6330","2950771","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33415786","0","20 Apr 2026 15:47:27:797","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260420 15:47:27.797","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","197752","PT100012006","6330","2981434","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33910899","0","20 Apr 2026 16:44:48:377","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260420 16:44:48.377","","" +"PRT","9134","DD5-PT10001","ULS SANTA MARIA - HOSP. SANTA MARIA","202226","PT100012009","6330","3073518","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34636913","0","19 May 2026 14:43:03:220","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","20 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260519 14:43:03.220","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","190800","PT100042001","6330","2833490","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31026207","0","08 Jan 2026 15:15:47:903","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260108 15:15:47.903","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","196753","PT100042002","6330","2960196","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33365679","0","29 Mar 2026 22:22:30:400","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260329 22:22:30.400","","" +"PRT","9203","DD5-PT10004","ULS LOURES ODIVELAS - HOSP. LOURES","202099","PT100042005","6330","3071344","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34522972","0","30 Apr 2026 23:03:53:717","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260430 23:03:53.717","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","190852","RO100062001","6330","2834455","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31915169","0","12 Feb 2026 14:27:46:570","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","22 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260212 14:27:46.570","","" +"ROU","9374","DD5-RO10006","S C Delta Health Care S R L","192567","RO100062002","6330","2872082","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34159115","0","26 Apr 2026 19:01:35:360","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260426 19:01:35.360","","" +"SWE","9847","DD5-SE10001","Ersta sjukhus","200421","SE100012001","6330","3037641","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33925344","0","21 Apr 2026 08:11:17:030","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","31 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260421 08:11:17.030","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","193282","SE100022001","6330","2887397","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33078793","0","27 Apr 2026 08:19:39:580","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","To pursue alternative treatment","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260427 08:19:39.580","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","194785","SE100022002","6330","2919903","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32007469","0","16 Feb 2026 07:07:56:813","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260216 07:07:56.813","","" +"SWE","9834","DD5-SE10002","Karolinska Universitetssjukhuset","201752","SE100022004","6330","3063828","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35228352","0","21 May 2026 12:12:58:587","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","18 MAY 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260521 12:12:58.587","","" +"TUR","9505","DD5-TR10001","Ege University Medical Faculty","192007","TR100012001","6330","2860344","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31803644","0","16 Mar 2026 08:00:46:003","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","10 FEB 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260316 08:00:46.003","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","194489","TR100022001","6330","2913603","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33317432","0","26 Mar 2026 12:30:23:217","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","17 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260326 12:30:23.217","","" +"TUR","9490","DD5-TR10002","Mersin University Medical Faculty Hospital","196426","TR100022002","6330","2953442","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32629717","0","26 Mar 2026 12:32:13:410","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 MAR 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260326 12:32:13.410","","" +"TUR","9442","DD5-TR10003","Istanbul University Cerrahpasa Medical Faculty","196586","TR100032002","6330","2956745","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33783797","0","16 Apr 2026 12:58:34:840","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260416 12:58:34.840","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","192863","TR100052001","6330","2878914","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32525840","0","04 Mar 2026 11:40:30:360","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","09 FEB 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260304 11:40:30.360","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","195756","TR100052002","6330","2938938","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33028666","0","17 Mar 2026 10:48:32:003","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260317 10:48:32.003","","" +"TUR","9460","DD5-TR10005","Kocaeli University Medical Faculty","196588","TR100052003","6330","2956767","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33028680","0","17 Mar 2026 10:49:14:017","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260317 10:49:14.017","","" +"TUR","9473","DD5-TR10007","Ankara Bilkent Sehir Hastanesi","199022","TR100072001","6330","3009249","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33565211","0","08 Apr 2026 12:24:38:537","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 MAR 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260408 12:24:38.537","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","190814","TW100022001","6330","2833860","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31362541","0","22 Jan 2026 07:57:07:870","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260122 07:57:07.870","","" +"TWN","9729","DD5-TW10002","Linkou Chang Gung Memorial Hospital","191960","TW100022002","6330","2859343","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31362600","0","22 Jan 2026 07:58:25:117","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260122 07:58:25.117","","" +"TWN","9731","DD5-TW10003","National Taiwan University Hospital","188304","TW100032002","6330","2783439","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31152920","0","13 Jan 2026 12:08:44:123","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260113 12:08:44.123","","" +"USA","8844","DD5-US10001","Clinnova Research","179547","US100012001","6330","2590022","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33749036","0","21 May 2026 17:09:34:457","Tier 1","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","6 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Completed","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260521 17:09:34.457","","" +"USA","8844","DD5-US10001","Clinnova Research","181084","US100012004","6330","2621314","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30647231","0","12 Jan 2026 18:35:27:100","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","1 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260112 18:35:27.100","","" +"USA","8844","DD5-US10001","Clinnova Research","186310","US100012005","6330","2717464","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31284051","0","19 Jan 2026 17:46:02:007","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","6 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260119 17:46:02.007","","" +"USA","8844","DD5-US10001","Clinnova Research","196664","US100012008","6330","2958317","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33751289","0","15 Apr 2026 20:07:47:373","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260415 20:07:47.373","","" +"USA","9686","DD5-US10009","Southern Star Research Institute, LLC","186010","US100092001","6330","2711417","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31451364","0","09 Feb 2026 14:06:24:553","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","15 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260209 14:06:24.553","","" +"USA","9786","DD5-US10016","GastroIntestinal Bioscience","191561","US100162001","6330","2849348","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32884924","0","11 Mar 2026 20:44:41:417","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260311 20:44:41.417","","" +"USA","9633","DD5-US10018","New York Gastroenterology Associates","191465","US100182001","6330","2846838","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32055395","0","17 Feb 2026 18:18:51:597","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 JAN 2026","Disposition Date","Withdrawal by Subject","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","Withdrawal of Consent","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260217 18:18:51.597","","" +"USA","9633","DD5-US10018","New York Gastroenterology Associates","201336","US100182002","6330","3055401","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35029864","0","13 May 2026 15:52:39:707","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","30 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260513 15:52:39.707","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","194978","US100222001","6330","2924108","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33088489","0","18 Mar 2026 22:18:12:397","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","16 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260318 22:18:12.397","","" +"USA","9600","DD5-US10022","Medical Associates Research Group, Inc.","199858","US100222004","6330","3026843","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33201146","0","23 Mar 2026 22:04:51:407","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260323 22:04:51.407","","" +"USA","9037","DD5-US10023","Tri-State Gastroenterology Assoc","190795","US100232001","6330","2833395","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31584002","0","02 Feb 2026 17:56:55:953","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260202 17:56:55.953","","" +"USA","9656","DD5-US10027","Florida Research Center Inc.","185266","US100272001","6330","2698165","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31373900","0","22 Jan 2026 14:13:35:523","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","07 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260122 14:13:35.523","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","193204","US100462001","6330","2886070","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32151989","0","20 Feb 2026 16:20:00:977","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","19 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260220 16:20:00.977","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","193925","US100462002","6330","2901421","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32022272","0","18 Feb 2026 19:42:21:893","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","11 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260218 19:42:21.893","","" +"USA","9635","DD5-US10046","DFW Clinical Trials","194556","US100462003","6330","2915246","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31739519","0","10 Feb 2026 16:31:00:413","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","04 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260210 16:31:00.413","","" +"USA","9768","DD5-US10048","Southern California Research Center","195107","US100482001","6330","2927333","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33964896","0","21 May 2026 18:56:24:403","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","21 MAY 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Other","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","PREGNANCY","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260521 18:56:24.403","","" +"USA","9689","DD5-US10049","Gastroenterolgy Associates of Central GA","191145","US100492001","6330","2840200","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31734637","0","06 Feb 2026 14:47:07:637","Tier 1","SDVTier","","Category","","Subcategory","","What was the subjects status? (Derived field)","","Disposition Date","","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260206 14:47:07.637","","" +"USA","10028","DD5-US10057","TLC Clinical Research Inc","198940","US100572001","6330","3007559","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33711940","0","14 Apr 2026 22:49:49:373","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 APR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260414 22:49:49.373","","" +"USA","10028","DD5-US10057","TLC Clinical Research Inc","200216","US100572002","6330","3033818","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","34700645","0","20 May 2026 18:28:04:910","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","01 MAY 2026","Disposition Date","Physician Decision","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260520 18:28:04.910","","" +"USA","9628","DD5-US10059","Om Research LLC","186304","US100592001","6330","2717331","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","30958842","0","28 Jan 2026 19:09:51:630","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","10 DEC 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260128 19:09:51.630","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","179807","US100632001","6330","2595339","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","28461550","0","28 Oct 2025 15:05:57:273","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","23 OCT 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20251028 15:05:57.273","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","183786","US100632002","6330","2670829","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","29546687","0","24 Nov 2025 20:12:14:047","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","7 NOV 2025","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20251124 20:12:14.047","","" +"USA","9643","DD5-US10063","Susquehanna Research Group","196543","US100632004","6330","2955838","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32333748","0","26 Feb 2026 18:30:25:587","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260226 18:30:25.587","","" +"USA","9984","DD5-US10077","Delta Research Partners, LLC","193186","US100772001","6330","2885662","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32396853","0","02 Mar 2026 14:35:38:330","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260302 14:35:38.330","","" +"USA","9624","DD5-US10081","The Oregon Clinic","189784","US100812001","6330","2811836","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","31430823","0","26 Jan 2026 21:53:49:083","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","26 JAN 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260126 21:53:49.083","","" +"USA","9624","DD5-US10081","The Oregon Clinic","193369","US100812002","6330","2889005","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32255106","0","24 Feb 2026 21:22:12:660","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","24 FEB 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260224 21:22:12.660","","" +"USA","9624","DD5-US10081","The Oregon Clinic","195902","US100812003","6330","2942321","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","33614760","0","14 Apr 2026 19:49:35:130","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","10 APR 2026","Disposition Date","","What was the subjects primary reason for screen failure?","Withdrawal by Subject","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","To pursue alternative treatment","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260414 19:49:35.130","","" +"USA","9257","DD5-US10089","Cotton O'Neil Digestive Health Center","196814","US100892001","6330","2961394","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","32919126","0","12 Mar 2026 17:42:22:703","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","02 MAR 2026","Disposition Date","Failure to Meet Eligibility Criteria","What was the subjects primary reason for screen failure?","","What was the subjects primary reason for trial discontinuation/completion?","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/25/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260525 10:01:04.493","GMT","20260312 17:42:22.703","","" diff --git a/Medidata/run_uco3001.py b/Medidata/run_uco3001.py new file mode 100644 index 0000000..b4600ab --- /dev/null +++ b/Medidata/run_uco3001.py @@ -0,0 +1,12 @@ +from download_uco3001 import download_datalisting_reports_3001 + +# === Vyber jeden řádek, odkomentuj ho a spusť === + +# --- Trial Disposition --- +download_datalisting_reports_3001("Trial Disposition (Completion / Discontinuation)") +download_datalisting_reports_3001("Date of Visit") +# download_datalisting_reports_3001("Trial Disposition (Completion / Discontinuation)", country="CZE") + +# --- Date of Visit --- +# download_datalisting_reports_3001("Date of Visit") +# download_datalisting_reports_3001("Date of Visit", country="CZE")