diff --git a/EmailsImport/DockerCustomApp/BUILD.md b/EmailsImport/DockerCustomApp/BUILD.md index cd13f1e..45232cc 100644 --- a/EmailsImport/DockerCustomApp/BUILD.md +++ b/EmailsImport/DockerCustomApp/BUILD.md @@ -7,6 +7,8 @@ ## Kopírování souborů z Windows Všechny soubory z `U:\janssen\EmailsImport\DockerCustomApp\` nakopírovat do `\\tower\appdata\msgreceiver\`. +**DŮLEŽITÉ:** Po každé změně `app.py` je nutný rebuild a restart kontejneru (viz níže). Bez toho běží stará verze. + ## Build & restart (SSH) ```bash # Připojení: ssh root@192.168.1.76, heslo: 7309208104 @@ -26,6 +28,18 @@ docker run -d --name msgreceiver \ ## Kontejner - Port: 8765 - Restart policy: unless-stopped -- Endpointy: `/upload` (msg), `/upload-db` (db), `/upload-dropbox` (soubory do Dropboxu) +- Endpointy: + - `/upload` (msg + volitelný `folder` → uloží na disk + import do Graph API) + - `/upload-db` (db → /msgs/db, maže staré) + - `/upload-dropbox` (soubory do Dropboxu) - Auth: Bearer token v app.py - Dropbox credentials: v `.env` uvnitř image +- Graph API credentials: přímo v app.py (Mail.ReadWrite + Mail.Send, tenant TrialHelp s.r.o.) + +## Graph import +Při uploadu .msg s parametrem `folder` (plná cesta z JNJ Outlooku) server: +1. Uloží .msg na disk +2. Parsuje .msg a importuje do schránky `vladimir.buzalka@buzalka.cz` do `Inbox/JNJ/...` +3. Složky se vytvářejí automaticky, mapování: `/vbuzalka@its.jnj.com/X` → `JNJ/X`, `/Online Archive.../X` → `JNJ/Online Archive/X` + +Klient v1.4 (`janssenpc_email_send_new_v1.4.py`) posílá `folder` automaticky. diff --git a/EmailsImport/DockerCustomApp/FC130007ACFE5DCB0000.msg b/EmailsImport/DockerCustomApp/FC130007ACFE5DCB0000.msg new file mode 100644 index 0000000..befa89c Binary files /dev/null and b/EmailsImport/DockerCustomApp/FC130007ACFE5DCB0000.msg differ diff --git a/EmailsImport/DockerCustomApp/app.py b/EmailsImport/DockerCustomApp/app.py index d30b06e..975beec 100644 --- a/EmailsImport/DockerCustomApp/app.py +++ b/EmailsImport/DockerCustomApp/app.py @@ -1,17 +1,28 @@ -# app.py | v1.0 | 2026-05-29 -# FastAPI server pro příjem .msg a .db souborů a upload do Dropboxu. -# Endpointy: /upload (.msg → /msgs), /upload-db (.db → /msgs/db), /upload-dropbox (→ Dropbox /!!!Days/Downloads Z230). +# app.py | v1.3 | 2026-05-29 +# FastAPI server pro příjem .msg a .db souborů, upload do Dropboxu a import do Graph API. +# Endpointy: /upload (.msg → /msgs + Graph import), /upload-db (.db → /msgs/db), +# /upload-dropbox (→ Dropbox /!!!Days/Downloads Z230). -from fastapi import FastAPI, UploadFile, File, Header, HTTPException +from fastapi import FastAPI, UploadFile, File, Form, Header, HTTPException import shutil +import base64 +import logging from pathlib import Path +from typing import Optional import os import dropbox +import msal +import requests as http_requests +import extract_msg +from dateutil import parser as dtparser +from datetime import timezone from dotenv import load_dotenv load_dotenv(Path(__file__).parent / ".env") app = FastAPI() +log = logging.getLogger("msgreceiver") +logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s") TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" SAVE_DIR = Path("/msgs") @@ -24,11 +35,213 @@ DROPBOX_APP_KEY = os.getenv("DROPBOX_APP_KEY", "") DROPBOX_APP_SECRET = os.getenv("DROPBOX_APP_SECRET", "") DROPBOX_REFRESH_TOKEN = os.getenv("DROPBOX_APP_REFRESH_TOKEN", "") +# --- Graph API config --- +GRAPH_TENANT_ID = "7d269944-37a4-43a1-8140-c7517dc426e9" +GRAPH_CLIENT_ID = "4b222bfd-78c9-4239-a53f-43006b3ed07f" +GRAPH_CLIENT_SECRET = "Txg8Q~MjhocuopxsJyJBhPmDfMxZ2r5WpTFj1dfk" +GRAPH_MAILBOX = "vladimir.buzalka@buzalka.cz" +GRAPH_ROOT_FOLDER = "JNJ" # subfolder under Inbox — root for imported emails +GRAPH_URL = "https://graph.microsoft.com/v1.0" + +# Cache: folder path → Graph folder ID +_folder_id_cache: dict[str, str] = {} +_graph_token: Optional[str] = None + + +def _get_graph_token() -> str: + global _graph_token + msalapp = msal.ConfidentialClientApplication( + GRAPH_CLIENT_ID, + authority=f"https://login.microsoftonline.com/{GRAPH_TENANT_ID}", + client_credential=GRAPH_CLIENT_SECRET, + ) + result = msalapp.acquire_token_for_client(scopes=["https://graph.microsoft.com/.default"]) + if "access_token" not in result: + raise RuntimeError(f"Graph auth failed: {result}") + _graph_token = result["access_token"] + return _graph_token + + +def _graph_headers() -> dict: + token = _graph_token or _get_graph_token() + return {"Authorization": f"Bearer {token}", "Content-Type": "application/json"} + + +def _ensure_folder(path_parts: list[str]) -> str: + """Ensure folder hierarchy exists under Inbox, return leaf folder ID.""" + cache_key = "/".join(path_parts) + if cache_key in _folder_id_cache: + return _folder_id_cache[cache_key] + + headers = _graph_headers() + parent_id = "Inbox" + + for i, part in enumerate(path_parts): + partial_key = "/".join(path_parts[: i + 1]) + if partial_key in _folder_id_cache: + parent_id = _folder_id_cache[partial_key] + continue + + # List children of parent + if parent_id == "Inbox": + url = f"{GRAPH_URL}/users/{GRAPH_MAILBOX}/mailFolders/Inbox/childFolders" + else: + url = f"{GRAPH_URL}/users/{GRAPH_MAILBOX}/mailFolders/{parent_id}/childFolders" + + r = http_requests.get(url, headers=headers, timeout=15) + if r.status_code == 401: + _get_graph_token() + headers = _graph_headers() + r = http_requests.get(url, headers=headers, timeout=15) + + found = None + for f in r.json().get("value", []): + if f["displayName"].lower() == part.lower(): + found = f["id"] + break + + if not found: + # Create folder + cr = http_requests.post(url, headers=headers, json={"displayName": part}, timeout=15) + if cr.status_code in (200, 201): + found = cr.json()["id"] + elif cr.status_code == 409: + # Already exists (race condition) — re-fetch + r2 = http_requests.get(url, headers=headers, timeout=15) + for f in r2.json().get("value", []): + if f["displayName"].lower() == part.lower(): + found = f["id"] + break + if not found: + raise RuntimeError(f"Cannot create folder '{part}': {cr.text}") + + _folder_id_cache[partial_key] = found + parent_id = found + + return parent_id + + +def _map_jnj_folder(folder: str) -> list[str]: + """Map JNJ folder path to Graph folder parts under JNJ root. + + '/vbuzalka@its.jnj.com/Inbox/TMP' → ['JNJ', 'Inbox', 'TMP'] + '/Online Archive - vbuzalka@its.jnj.com/Inbox' → ['JNJ', 'Online Archive', 'Inbox'] + """ + parts = [p for p in folder.split("/") if p] + if not parts: + return [GRAPH_ROOT_FOLDER] + + # First part is mailbox name — strip it but detect Online Archive + mailbox = parts[0] + rest = parts[1:] + + prefix = [GRAPH_ROOT_FOLDER] + if "online archive" in mailbox.lower(): + prefix.append("Online Archive") + + return prefix + rest if rest else prefix + + +def _make_recipient(addr: str) -> dict: + if "<" in addr and ">" in addr: + name = addr[: addr.index("<")].strip().strip('"') + email = addr[addr.index("<") + 1 : addr.index(">")].strip() + else: + name = addr + email = addr + return {"emailAddress": {"name": name, "address": email}} + + +def _import_msg_to_graph(msg_path: Path, folder: str) -> Optional[str]: + """Parse .msg and import into Graph API mailbox. Returns message ID or None.""" + try: + msg = extract_msg.Message(str(msg_path)) + + subject = msg.subject or "(no subject)" + body_html = msg.htmlBody + if isinstance(body_html, bytes): + body_html = body_html.decode("utf-8", errors="replace") + body_text = msg.body or "" + + sender_email = msg.sender or "" + sender_name = getattr(msg, "senderName", None) or sender_email + to_raw = msg.to or "" + cc_raw = msg.cc or "" + date_raw = msg.date + + att_list = [] + for att in msg.attachments: + if att.data and att.longFilename: + att_list.append({ + "@odata.type": "#microsoft.graph.fileAttachment", + "name": att.longFilename, + "contentType": getattr(att, "mimetype", None) or "application/octet-stream", + "contentBytes": base64.b64encode(att.data).decode(), + }) + + msg.close() + + to_list = [a.strip() for a in to_raw.split(";") if a.strip()] + cc_list = [a.strip() for a in cc_raw.split(";") if a.strip()] + + # Map folder and ensure it exists + folder_parts = _map_jnj_folder(folder) + folder_id = _ensure_folder(folder_parts) + + payload = { + "subject": subject, + "body": { + "contentType": "HTML" if body_html else "Text", + "content": body_html or body_text, + }, + "from": _make_recipient(f"{sender_name} <{sender_email}>"), + "toRecipients": [_make_recipient(a) for a in to_list], + "ccRecipients": [_make_recipient(a) for a in cc_list], + "isRead": True, + "singleValueExtendedProperties": [ + {"id": "Integer 0x0E07", "value": "1"} + ], + } + + if date_raw: + try: + dt = dtparser.parse(str(date_raw)) + payload["receivedDateTime"] = dt.astimezone(timezone.utc).strftime( + "%Y-%m-%dT%H:%M:%SZ" + ) + except Exception: + pass + + if att_list: + payload["attachments"] = att_list + + headers = _graph_headers() + url = f"{GRAPH_URL}/users/{GRAPH_MAILBOX}/mailFolders/{folder_id}/messages" + r = http_requests.post(url, headers=headers, json=payload, timeout=30) + + if r.status_code == 401: + _get_graph_token() + headers = _graph_headers() + r = http_requests.post(url, headers=headers, json=payload, timeout=30) + + if r.status_code in (200, 201): + msg_id = r.json().get("id", "") + log.info("Graph OK: %s → %s", subject[:60], "/".join(folder_parts)) + return msg_id + else: + log.error("Graph FAIL [%d]: %s | %s", r.status_code, subject[:60], r.text[:200]) + return None + + except Exception as e: + log.error("Graph import error for %s: %s", msg_path.name, e) + return None + @app.post("/upload") async def upload_msg( file: UploadFile = File(...), - authorization: str = Header(None) + authorization: str = Header(None), + folder: str = Form(""), ): if authorization != f"Bearer {TOKEN}": raise HTTPException(status_code=401, detail="Unauthorized") @@ -39,7 +252,17 @@ async def upload_msg( return {"status": "exists", "file": file.filename} with dest.open("wb") as f: shutil.copyfileobj(file.file, f) - return {"status": "saved", "file": file.filename} + + # Import to Graph API if folder was provided by client + graph_id = None + if folder: + graph_id = _import_msg_to_graph(dest, folder) + + return { + "status": "saved", + "file": file.filename, + "graph_imported": graph_id is not None, + } @app.post("/upload-db") diff --git a/EmailsImport/DockerCustomApp/requirements.txt b/EmailsImport/DockerCustomApp/requirements.txt index 7534feb..ab87058 100644 --- a/EmailsImport/DockerCustomApp/requirements.txt +++ b/EmailsImport/DockerCustomApp/requirements.txt @@ -2,4 +2,8 @@ fastapi uvicorn python-multipart dropbox -python-dotenv \ No newline at end of file +python-dotenv +msal +requests +extract-msg +python-dateutil \ No newline at end of file diff --git a/EmailsImport/DockerCustomApp/test_import_msg.py b/EmailsImport/DockerCustomApp/test_import_msg.py new file mode 100644 index 0000000..9bb087c --- /dev/null +++ b/EmailsImport/DockerCustomApp/test_import_msg.py @@ -0,0 +1,180 @@ +# test_import_msg.py — pokusný import .msg do schránky přes Graph API +# Parsuje .msg soubor a vytvoří zprávu v Inbox cílové schránky. + +import base64 +import msal +import requests +import extract_msg +import sys +from pathlib import Path + +# === CONFIG === +TENANT_ID = "7d269944-37a4-43a1-8140-c7517dc426e9" +CLIENT_ID = "4b222bfd-78c9-4239-a53f-43006b3ed07f" +CLIENT_SECRET = "Txg8Q~MjhocuopxsJyJBhPmDfMxZ2r5WpTFj1dfk" +MAILBOX = "vladimir.buzalka@buzalka.cz" + +AUTHORITY = f"https://login.microsoftonline.com/{TENANT_ID}" +SCOPE = ["https://graph.microsoft.com/.default"] +GRAPH_URL = "https://graph.microsoft.com/v1.0" +TARGET_FOLDER = "JNJ" # subfolder under Inbox + +# === MSG FILE === +MSG_PATH = Path(__file__).parent / "FC130007ACFE5DCB0000.msg" + + +def get_token(): + app = msal.ConfidentialClientApplication( + CLIENT_ID, authority=AUTHORITY, client_credential=CLIENT_SECRET + ) + token = app.acquire_token_for_client(scopes=SCOPE) + if "access_token" not in token: + raise RuntimeError(f"Auth failed: {token}") + return token["access_token"] + + +def parse_msg(path): + """Parse .msg file and return dict with message properties.""" + msg = extract_msg.Message(str(path)) + + # Read all properties before closing + subject = msg.subject or "(no subject)" + body_html = msg.htmlBody + if isinstance(body_html, bytes): + body_html = body_html.decode("utf-8", errors="replace") + body_text = msg.body or "" + + sender_email = msg.sender or "" + sender_name = getattr(msg, "senderName", None) or sender_email + + to_raw = msg.to or "" + cc_raw = msg.cc or "" + date_raw = msg.date + + att_list = [] + for att in msg.attachments: + if att.data and att.longFilename: + att_list.append({ + "@odata.type": "#microsoft.graph.fileAttachment", + "name": att.longFilename, + "contentType": getattr(att, "mimetype", None) or "application/octet-stream", + "contentBytes": base64.b64encode(att.data).decode(), + }) + + msg.close() + + # Process after close + to_list = [a.strip() for a in to_raw.split(";") if a.strip()] + cc_list = [a.strip() for a in cc_raw.split(";") if a.strip()] + received = str(date_raw) if date_raw else None + + return { + "subject": subject, + "body_html": body_html, + "body_text": body_text, + "sender_email": sender_email, + "sender_name": sender_name, + "to": to_list, + "cc": cc_list, + "received": received, + "attachments": att_list, + } + + +def make_recipient(addr): + """Create Graph API recipient object from email address.""" + # Handle 'Name ' format + if "<" in addr and ">" in addr: + name = addr[:addr.index("<")].strip().strip('"') + email = addr[addr.index("<") + 1 : addr.index(">")].strip() + else: + name = addr + email = addr + return {"emailAddress": {"name": name, "address": email}} + + +def import_msg(msg_path): + token = get_token() + headers = { + "Authorization": f"Bearer {token}", + "Content-Type": "application/json", + } + + print(f"Parsing: {msg_path}") + data = parse_msg(msg_path) + print(f" Subject: {data['subject']}") + print(f" From: {data['sender_name']} <{data['sender_email']}>") + print(f" To: {data['to']}") + print(f" Date: {data['received']}") + print(f" Attachments: {len(data['attachments'])}") + + # 1. Create message in mailFolder (Inbox) + payload = { + "subject": data["subject"], + "body": { + "contentType": "HTML" if data["body_html"] else "Text", + "content": data["body_html"] or data["body_text"], + }, + "from": make_recipient( + f"{data['sender_name']} <{data['sender_email']}>" + ), + "toRecipients": [make_recipient(a) for a in data["to"]], + "ccRecipients": [make_recipient(a) for a in data["cc"]], + "isRead": True, + # PR_MESSAGE_FLAGS (0x0E07) = 1 → read, NOT draft (without MSGFLAG_UNSENT=0x08) + "singleValueExtendedProperties": [ + { + "id": "Integer 0x0E07", + "value": "1", + } + ], + } + + if data["received"]: + # Graph API expects ISO 8601 UTC format + from datetime import datetime, timezone + try: + from dateutil import parser as dtparser + dt = dtparser.parse(data["received"]) + payload["receivedDateTime"] = dt.astimezone(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ") + except Exception as e: + print(f" Warning: cannot parse date '{data['received']}': {e}") + + if data["attachments"]: + payload["attachments"] = data["attachments"] + + # Find target folder (Inbox/JNJ) + folder_url = f"{GRAPH_URL}/users/{MAILBOX}/mailFolders/Inbox/childFolders" + r_folders = requests.get(folder_url, headers=headers, timeout=15) + folder_id = None + for f in r_folders.json().get("value", []): + if f["displayName"].lower() == TARGET_FOLDER.lower(): + folder_id = f["id"] + break + + if not folder_id: + # Create the folder if it doesn't exist + r_create = requests.post( + folder_url, headers=headers, + json={"displayName": TARGET_FOLDER}, timeout=15 + ) + folder_id = r_create.json()["id"] + print(f" Created folder '{TARGET_FOLDER}'") + + url = f"{GRAPH_URL}/users/{MAILBOX}/mailFolders/{folder_id}/messages" + print(f"\nPOST -> Inbox/{TARGET_FOLDER}") + + r = requests.post(url, headers=headers, json=payload, timeout=30) + + if r.status_code in (200, 201): + msg_id = r.json().get("id", "?") + print(f" OK! Message created, id={msg_id[:40]}...") + return r.json() + else: + print(f" FAILED [{r.status_code}]: {r.text[:500]}") + return None + + +if __name__ == "__main__": + path = sys.argv[1] if len(sys.argv) > 1 else MSG_PATH + import_msg(Path(path)) diff --git a/EmailsImport/10 GetOneTimeDropBoxAuth.py b/EmailsImport/Onetime/10 GetOneTimeDropBoxAuth.py similarity index 100% rename from EmailsImport/10 GetOneTimeDropBoxAuth.py rename to EmailsImport/Onetime/10 GetOneTimeDropBoxAuth.py diff --git a/EmailsImport/20 TestDropboxUpload.py b/EmailsImport/Onetime/20 TestDropboxUpload.py similarity index 100% rename from EmailsImport/20 TestDropboxUpload.py rename to EmailsImport/Onetime/20 TestDropboxUpload.py diff --git a/EmailsImport/db_cleanup_inbox_v1.0.py b/EmailsImport/Onetime/db_cleanup_inbox_v1.0.py similarity index 100% rename from EmailsImport/db_cleanup_inbox_v1.0.py rename to EmailsImport/Onetime/db_cleanup_inbox_v1.0.py diff --git a/EmailsImport/janssenpc_email_send_new_v1.3.py b/EmailsImport/Trash/janssenpc_email_send_new_v1.3.py similarity index 100% rename from EmailsImport/janssenpc_email_send_new_v1.3.py rename to EmailsImport/Trash/janssenpc_email_send_new_v1.3.py diff --git a/EmailsImport/janssenpc_email_send_new_v1.4.py b/EmailsImport/janssenpc_email_send_new_v1.4.py new file mode 100644 index 0000000..d1ad95f --- /dev/null +++ b/EmailsImport/janssenpc_email_send_new_v1.4.py @@ -0,0 +1,233 @@ +""" +janssenpc_email_send_new v1.4 +Verze: 1.4.1 +Datum: 2026-05-29 +Popis: Prochází složky Inbox, Deleted Items a Sent Items v Outlooku (MAPI), + ukládá emailové zprávy jako .msg soubory a uploaduje je na https://msgs.buzalka.cz. + Zaznamenává zpracované zprávy do SQLite DB (jnjemails.db) a DB uploaduje na server + jednou za 24 hodin (ne při každém běhu). Podporuje pokračování od posledního + zpracovaného emailu (resume). Folder cesta obsahuje celé jméno schránky + (např. /vbuzalka@its.jnj.com/Inbox). Chyby se logují do jnjemails_errors.log. +""" +import win32com.client +import requests +import sqlite3 +import urllib3 +import logging +from pathlib import Path +from datetime import datetime, timedelta +import tempfile +import io + +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +TOKEN = "13e1bb01-9fd5-44a8-8ce9-4ee27133d340" +UPLOAD_URL = "https://msgs.buzalka.cz/upload" +DB_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails.db" +DB_UPLOAD_MARKER = r"C:\Users\vbuzalka\SQLITE\jnjemails_last_db_upload.txt" +DB_UPLOAD_INTERVAL_H = 24 +LOG_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails_errors.log" +PR_INTERNET_MESSAGE_ID = "http://schemas.microsoft.com/mapi/proptag/0x1035001E" + +# olFolderInbox=6, olFolderDeletedItems=3, olFolderSentMail=5 +FOLDERS_TO_PROCESS = [6, 3, 5] + +UPLOAD_LOG_PATH = r"C:\Users\vbuzalka\SQLITE\jnjemails_uploads.log" + +logging.basicConfig( + filename=LOG_PATH, + level=logging.ERROR, + format="%(asctime)s | %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + encoding="utf-8", +) + +# Separate upload logger — logs every upload attempt +_upload_log = logging.getLogger("uploads") +_upload_log.setLevel(logging.DEBUG) +_uh = logging.FileHandler(UPLOAD_LOG_PATH, encoding="utf-8") +_uh.setFormatter(logging.Formatter("%(asctime)s | %(message)s", datefmt="%Y-%m-%d %H:%M:%S")) +_upload_log.addHandler(_uh) + +def init_db(conn): + conn.execute(""" + CREATE TABLE IF NOT EXISTS messages ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + message_id TEXT NOT NULL, + subject TEXT, + sender TEXT, + received_at TEXT, + folder TEXT, + source TEXT, + uploaded_at TEXT DEFAULT (datetime('now')) + ) + """) + conn.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_message_id ON messages(message_id)") + conn.commit() + +def is_uploaded(conn, message_id): + row = conn.execute( + "SELECT 1 FROM messages WHERE message_id = ? LIMIT 1", (message_id,) + ).fetchone() + return row is not None + +def save_to_db(conn, message_id, subject, sender, received_at, folder, source): + conn.execute(""" + INSERT OR IGNORE INTO messages (message_id, subject, sender, received_at, folder, source) + VALUES (?, ?, ?, ?, ?, ?) + """, (message_id, subject, sender, received_at, folder, source)) + conn.commit() + +def _db_upload_due() -> bool: + """Return True if 24h elapsed since last DB upload (or never uploaded).""" + marker = Path(DB_UPLOAD_MARKER) + if not marker.exists(): + return True + try: + last = datetime.fromisoformat(marker.read_text().strip()) + return (datetime.now() - last).total_seconds() >= DB_UPLOAD_INTERVAL_H * 3600 + except Exception: + return True + +def _db_upload_mark(): + """Write current timestamp to marker file.""" + Path(DB_UPLOAD_MARKER).write_text(datetime.now().isoformat()) + +def upload_db(db_path, force=False): + if not force and not _db_upload_due(): + return + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"jnjemails_{timestamp}.db" + with open(db_path, "rb") as f: + resp = requests.post( + "https://msgs.buzalka.cz/upload-db", + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + timeout=60 + ) + print(f" DB upload: {resp.json()}") + _db_upload_mark() + +def upload_msg(msg_path, filename, folder=""): + _upload_log.info("UPLOAD %s | folder=%s", filename, folder) + with open(msg_path, "rb") as f: + resp = requests.post( + UPLOAD_URL, + headers={"Authorization": f"Bearer {TOKEN}"}, + files={"file": (filename, f, "application/octet-stream")}, + data={"folder": folder}, + timeout=60 + ) + resp.raise_for_status() + result = resp.json() + _upload_log.info("RESPONSE %s | %s", filename, result) + return result["status"] + +def get_folder_resume_date(conn, folder_path): + row = conn.execute( + "SELECT MAX(received_at) FROM messages WHERE folder = ?", + (folder_path,) + ).fetchone() + if not row or not row[0]: + return None + last_dt = datetime.fromisoformat(row[0]) + return last_dt - timedelta(hours=1) + +def process_folder(conn, folder, source, folder_path="", counter=None): + if counter is None: + counter = [0] + + current_path = f"{folder_path}/{folder.Name}" + + try: + resume_dt = get_folder_resume_date(conn, current_path) + + items = folder.Items + + if resume_dt: + resume_str = resume_dt.strftime("%Y/%m/%d %H:%M:%S") + filter_str = f"@SQL=\"urn:schemas:httpmail:datereceived\" > '{resume_str}'" + items = folder.Items.Restrict(filter_str) + print(f"\n Složka: {current_path} | pokračuji od: {resume_str}") + else: + print(f"\n Složka: {current_path} | od začátku") + + items.Sort("[ReceivedTime]", False) + + count = 0 + skipped = 0 + + for item in items: + try: + if not item.MessageClass.upper().startswith("IPM.NOTE"): + continue + + try: + mid = item.PropertyAccessor.GetProperty(PR_INTERNET_MESSAGE_ID) + except: + mid = None + + if not mid: + mid = f"entryid:{item.EntryID}" + + if is_uploaded(conn, mid): + skipped += 1 + continue + + with tempfile.TemporaryDirectory() as tmp: + safe_name = f"{item.EntryID[-20:]}.msg" + tmp_path = Path(tmp) / safe_name + item.SaveAs(str(tmp_path), 3) + status = upload_msg(tmp_path, safe_name, current_path) + + received = item.ReceivedTime.isoformat() if item.ReceivedTime else None + save_to_db(conn, mid, item.Subject, item.SenderEmailAddress, + received, current_path, source) + + counter[0] += 1 + count += 1 + + if counter[0] % 1000 == 0: + print(f" → celkem {counter[0]} emailů přeneseno, uploaduji DB...") + upload_db(DB_PATH) + + print(f" {status.upper():6} | {item.Subject[:60]}") + + except Exception as e: + subject = getattr(item, 'Subject', '?') + sender = getattr(item, 'SenderEmailAddress', '?') + received = getattr(item, 'ReceivedTime', '?') + print(f" CHYBA | {subject[:40]} | {e}") + logging.error("folder=%s | sender=%s | received=%s | subject=%s | error=%s", + current_path, sender, received, subject, e) + + print(f" → složka hotova: přeneseno {count} | skip {skipped}") + + except Exception as e: + print(f" CHYBA složka {current_path}: {e}") + logging.error("folder=%s | CHYBA SLOŽKY | error=%s", current_path, e) + + for subfolder in folder.Folders: + process_folder(conn, subfolder, source, current_path, counter) + +# --- MAIN --- +Path(DB_PATH).parent.mkdir(parents=True, exist_ok=True) +conn = sqlite3.connect(DB_PATH) +init_db(conn) + +outlook = win32com.client.Dispatch("Outlook.Application") +ns = outlook.GetNamespace("MAPI") + +counter = [0] +for folder_id in FOLDERS_TO_PROCESS: + folder = ns.GetDefaultFolder(folder_id) + mailbox_name = folder.Parent.Name + print(f"\n=== {folder.Name} ({mailbox_name}) ===") + process_folder(conn, folder, "mailbox", f"/{mailbox_name}", counter) + +# Finální DB upload po dokončení +print("\nFinální upload DB...") +upload_db(DB_PATH) + +conn.close() +print(f"\nHotovo. Chyby logovány do: {LOG_PATH}") diff --git a/Medidata/auth.json b/Medidata/auth.json index 4450ba9..529d2ec 100644 --- a/Medidata/auth.json +++ b/Medidata/auth.json @@ -1 +1 @@ -{"cookies": [{"name": "MedidataRave", "value": "!IW9UMnsYOvceqzf+Fdbz28T3ltXXzy3OVik6UqSkTTGysA064MDiypQQGhyZclDq6e2B7wt2d3kBS/E=", "domain": "jnjja.mdsol.com", "path": "/", "expires": -1, "httpOnly": true, "secure": true, "sameSite": "Lax"}, {"name": "locale", "value": "eng", "domain": "login.imedidata.com", "path": "/", "expires": 1814439551.688143, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "onex", "value": "true", "domain": "login.imedidata.com", "path": "/", "expires": 1813897495.034601, "httpOnly": true, "secure": true, "sameSite": "Lax"}, {"name": "2fa_session", "value": "e2eac151-6942-4ac4-900a-44aaf9bc853f", "domain": "login.imedidata.com", "path": "/", "expires": 1779942319.549176, "httpOnly": false, "secure": true, "sameSite": "Lax"}, {"name": "preferred_idp", "value": "medidata", "domain": "login.imedidata.com", "path": "/", "expires": 1814439551.688401, "httpOnly": false, "secure": true, "sameSite": "None"}, {"name": "BIGipServerpool_mdsol", "value": "15dcd1a506865ba47e33e51b51434087", "domain": "servicenow.imedidata.com", "path": "/", "expires": -1, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "service", "value": "https%3A%2F%2Fjnjja.mdsol.com%2FMedidataRave%2FSelectRole.aspx%3Fclient_division_uuid%3De5de55d5-a414-4bd1-9abe-18e96fd5475d%26study_group_uuid%3Db0793ca6-33ec-44e8-883b-6fc1a4b671c4%26studygroup_id%3D107981", "domain": "login.imedidata.com", "path": "/", "expires": 1779883147.736584, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "tgt", "value": "TGC-0d899cb765355de8a82d85331e135", "domain": "login.imedidata.com", "path": "/", "expires": -1, "httpOnly": false, "secure": true, "sameSite": "Lax"}, {"name": "_authmedidata_session", "value": "qXPhLsKlR9BWXrBt6kNBdeVwSCehQQRoOUTG2AUZ1TZ7LvPeZ6ucd%2FQp0oACEVLT8JHmdnmiEK%2BXCogtiyMU%2BfF24xq5EXI7DcGdfxwIgjqUVnZZ3pvA%2BBkgvxpioM%2Bt7skt9YFYAccaqsj2G0iMaGKoNcPd0X9yklxwF%2FTHAy8VFCecZ%2FFE9ArmpmB21Hc3T%2BsHVKbTolJkyLv5mZq6UezATUaXpOr5efDT4GIFQLPOwyyvJseX43VJh4v75j88J%2FHVn0d9q%2FkLeWq47n2%2FhfE5RhMMzGnHwcQROzqH0%2FXT%2FCkc9hT5nci06ERKgZgUiw%3D%3D--ohHGDqKihNa6pORw--PYhxt8pDWoJ0hCFb5aCvZQ%3D%3D", "domain": "login.imedidata.com", "path": "/", "expires": -1, "httpOnly": true, "secure": true, "sameSite": "Lax"}, {"name": "_session_id", "value": "2dc2d6bf74d7ee6b46f73ba27936df01", "domain": "www.imedidata.com", "path": "/", "expires": 1779944352.566561, "httpOnly": true, "secure": true, "sameSite": "Lax"}, {"name": "CAS", "value": "HGYHLFV3NENR6BVSTEU63Y4ZM3T3RRPHLAK7MI4GR2HJKSEE53HEJGV5FXRBI4IFJPVXGZYT3PBGSTQOIAKR4JYPWZZRX3JRHAWZT2I", "domain": "home.imedidata.com", "path": "/", "expires": 1779944355.610931, "httpOnly": false, "secure": false, "sameSite": "Lax"}], "origins": [{"origin": "https://home.imedidata.com", "localStorage": [{"name": "unleash:repository:sessionId", "value": "\"351450381\""}, {"name": "i18nextLng", "value": "eng"}, {"name": "_pendo_visitorId.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"ttl\":1788428834772,\"value\":\"vbuzalka@its.jnj.com\"}"}, {"name": "_pendo_accountId.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"ttl\":1788428834785,\"value\":\"NOT_A_STUDY_ENVIRONMENT\"}"}, {"name": "_pendo_utm.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"channel\":\"Referral\",\"referrer\":\"login.imedidata.com\"}"}, {"name": "_pendo_meta.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"ttl\":1788428834772,\"value\":665726537}"}, {"name": "unleash:repository:repo", "value": "[{\"name\":\"platform_admin_client_level_mdm\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_cloudadmin_downloads\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_global_nav_rollout\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_icat_bulk_sea_removal\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_icat_roles\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_people_list\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_ssu_enable_cdo_updates\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_context_support\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_eks_etl\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_eks_use_processes\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_enable_new_stored_procedures\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_enable_stored_procedures_parallel_execution\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_extractor_rollout\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_rave_db_alias\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_ts_rollout\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_applinks_skip_rsg_quirk\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_assistant_dynamodb\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_assistant_use_dynamic_agent_config\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_broadcast_notification_enable_roles\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_enable_1x\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_enable_scim_user_heartbeat\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_enforce_eula\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_inclusive_namespaces\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_remember_multi_user\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_default_role_selection\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_1x_forward_navigation\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_faro\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_linked_accounts\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_range_request_for_elearning\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_service_now\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_inject_scripts\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_patients_clear_action_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_se_only_roles_on_sites\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_send_user_activity\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cloud_admin_term_changes\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cloud_admin_tm_unblinded\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_csa_cache_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_csa_detect_max_parallel_calls\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_consume_user_deactivated_attr\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_daltonized_autogen_roles_app_bb_mapping\",\"enabled\":true,\"variant\":{\"name\":\"all_special_case_apps\",\"enabled\":true,\"payload\":{\"type\":\"json\",\"value\":\"{\\n \\\"5b3a22d0-5193-4604-822e-2e1bacfba880\\\": \\\"work_with_documents_and_tasks\\\",\\n \\\"1b28a9f0-16ed-464e-9635-c23c351b26cb\\\":\\n \\\"access_site_cloud_end_of_study_eos\\\",\\n \\\"1b44906e-cc4f-40d0-91ce-54801c728527\\\":\\n \\\"meds_reporter_standard_reports\\\"\\n}\"}},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_enable_study_startup_applied_permissions\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_grants_use_advisory_locks\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_kafka_for_study_environment_sites\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_neo_elevate_swap_owner_building_blocks\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_no_reader_role_cascade\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_priv_scoped_bulk_operable_uri_case_fix\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_scientist_cds_level_items_use_candidate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_scientist_cte_function_use_candidate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_scientist_priv_index_better_redis_use_candidate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_uppercase_uuid_operables_special_loading_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_use_conduct_only_attribute_collections\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_daltonui_bb_group_categorization\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_datahub_enable_custom_code_filter\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_graphql_other_sorting_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_graphql_ses_sorting_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_graphql_study_group_sorting_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_graphql_study_sorting_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_hercules_enable_delete_dj_by_schedule_uuid\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_hercules_expire_executions_without_offset\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_account_activation_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_account_linkage_request_onex_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_account_number_request_onex_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_app_type_groups_api\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_assign_any_apps\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_auto_accept_invitations\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_bulk_create_study_site_assignments\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_change_email_confirmation_onex_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_change_password_confirmation_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_dalton_sync_app_roles\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_disable_individual_site_ownership\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_disable_v1_api_user_auth_via_soap\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_duplicate_activation_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_bulk_sqs_batching\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_knowledge_hub_links\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_leaked_passwords_check_on_activate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_leaked_passwords_check_on_update\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_new_certificate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_non_mcc_tenjin_mapping_sync\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_sgi_si_archon_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_expired_password_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_export_course_mappings\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_external_edc_feature\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_filter_hidden_apps\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_forgotten_password_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_gnav_enable_users_if_they_are_disabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_ignore_email_domains_for_mfa\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_manage_elearning\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_manipulate_sgi_prevention\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mcc_enable_sgi_si_archon_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mda_disable_invitations_fallback\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mda_process_invitations_with_plinth\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mda_sync_non_mcc_course_override_with_tenjin\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mfa_enforcement_notice\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_notification_center_link\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_redirect_all_users_to_global_nav\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_remove_help_center_link\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_skip_update_app_assignments_enabled_at\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_stop_multi_aar_updates_on_enabled_at\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_study_site_pi_to_tm_job_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_trigger_bbs_rename\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_update_telephone_search_ff\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_use_elearning_status\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mcc_1x_manage_organizations_landing_page\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_1x_manage_sites\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_1x_site_administration\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_access_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_app_names\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_enable_address_three\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_onex_manage_teams\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":true,\"impressionData\":true},{\"name\":\"platform_mccadmin_study_ip\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_study_program\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_team_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_use_cdo_report_api\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mediloader_allow_updates_any_apps\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_name_format_localization\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_calendar_via_smtp\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_enable_mfe\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_enable_migrated_types\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_enable_rate_limit\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_enable_types_api\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_participant_events_participant_events_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_phoenix_access_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_phoenix_team_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_access_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_allow_blank_roles\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_allow_geo_location_on_address\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_remove_homepage_handling\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_study_apps_skip_post\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_team_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_collapsible_left_nav\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_audit_viewer\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_client_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_search_dropdown\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_site_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_sites_dropdown_search_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_studies_dropdown_search_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_study_group_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_study_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_support_portal_link\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_val_portal\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_zoomin\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_hide_chat_with_support\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_hide_report_an_issue\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_new_notification_center\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_new_user_profile\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_proxy_enable_websocket_darklaunch\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_proxy_enable_websocket_rtt_measurement\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_proxy_enforce_mfa\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_proxy_user_activation\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_recenthistory_consume_replay_events\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_references_iso_upgrade\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_saa_lambda_processing_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_shared_fetch_new_roles_use_hercules\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_shared_role_based_elearning_ui\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_bulk_fetch_subject_sync\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_bypass_internal_ct_role_cache\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_crf_versions_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_index_api_db_paging\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_kafka_post_endpoint\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_thread_safe_subject_auditing\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_use_new_df_msk_cluster\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_check_cascade_course_mapping\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_new_course_completion\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_scientist_assigned_courses_use_candidate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_sidekiq_authentication\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_1x_password_reset\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_enable_linked_accounts\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_linked_account_enhancement\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_recent_sites_without_app_context\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_recent_studies_without_app_context\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_redesign_my_courses\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_remove_imed_courses\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_user_nav_data_product_enable_apps_cron\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_user_nav_data_product_enable_events_cron\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_va_clean_patient_tracker\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_va_kri\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_va_qtl\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false}]"}, {"name": "_pendo___sg__.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"visitormetadata\":{\"agent__email\":\"vbuzalka@its.jnj.com\"}}"}, {"name": "_pendo_sessionId.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"sessionId\":\"msozFcFB1PnekuZo\",\"timestamp\":1779788834782}"}]}]} \ No newline at end of file +{"cookies": [{"name": "MedidataRave", "value": "!IW9UMnsYOvceqzf+Fdbz28T3ltXXzy3OVik6UqSkTTGysA064MDiypQQGhyZclDq6e2B7wt2d3kBS/E=", "domain": "jnjja.mdsol.com", "path": "/", "expires": -1, "httpOnly": true, "secure": true, "sameSite": "Lax"}, {"name": "locale", "value": "eng", "domain": "login.imedidata.com", "path": "/", "expires": 1814676527.986358, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "onex", "value": "true", "domain": "login.imedidata.com", "path": "/", "expires": 1813897495.034601, "httpOnly": true, "secure": true, "sameSite": "Lax"}, {"name": "preferred_idp", "value": "medidata", "domain": "login.imedidata.com", "path": "/", "expires": 1814676527.986746, "httpOnly": false, "secure": true, "sameSite": "None"}, {"name": "BIGipServerpool_mdsol", "value": "15dcd1a506865ba47e33e51b51434087", "domain": "servicenow.imedidata.com", "path": "/", "expires": -1, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "2fa_session", "value": "2aeae8da-ad68-424c-9c26-ff06206ffef0", "domain": "login.imedidata.com", "path": "/", "expires": 1780670647.166771, "httpOnly": false, "secure": true, "sameSite": "Lax"}, {"name": "service", "value": "https%3A%2F%2Fjnjja.mdsol.com%2FMedidataRave%2FSelectRole.aspx%3Fclient_division_uuid%3De5de55d5-a414-4bd1-9abe-18e96fd5475d%26study_group_uuid%3Db0793ca6-33ec-44e8-883b-6fc1a4b671c4%26studygroup_id%3D107981", "domain": "login.imedidata.com", "path": "/", "expires": 1780120120.910463, "httpOnly": true, "secure": true, "sameSite": "None"}, {"name": "tgt", "value": "TGC-ca97a9cf4011a68d4c87fab8dd396", "domain": "login.imedidata.com", "path": "/", "expires": -1, "httpOnly": false, "secure": true, "sameSite": "Lax"}, {"name": "_authmedidata_session", "value": "xlT4ENH9Lk9SITKSx0aB9LQ9Byu4YOoCxSHl4URUd1nS6rI0zRm0C4gpLc10RXhha87AO7Q8yVNwWJ9XmP7YpCScmnwVvZeVJYOygbQ5mJyRkzRPoOnjFx%2Fkp0rUGx4itfUiyufMN%2B2TcZxM3nNIrCAXZnZQjTGRXiQ99%2BRXjr1uOIWgNqF7xfSULuZt8lDO823GzL0lj10HncDxJxPYIMVoH39OeYIXHhcVCoc9AOX0hyrjDQ3oxaPHmITdEzoor%2F36GUFGhrEZ%2FU1h4LG36%2BrpuOdaU7Ahdx72caJ9%2FC1jewgulXNxTViiiYFG3GmRTg%3D%3D--io%2FembV3wT%2FDy0zH--j2SmvujQMl9n27Gf03no4Q%3D%3D", "domain": "login.imedidata.com", "path": "/", "expires": -1, "httpOnly": true, "secure": true, "sameSite": "Lax"}, {"name": "_session_id", "value": "62ca5334b9ad35b0838762ec329b353c", "domain": "www.imedidata.com", "path": "/", "expires": 1780181329.86115, "httpOnly": true, "secure": true, "sameSite": "Lax"}, {"name": "CAS", "value": "T5FYLXSJ4CCWKNGD25FBICG3FDPQCGKNAP7KRFWWO3JCYIPCHJQ7EPQEM2W2S6MQJR4I7RIWINZ3EGSW7JSQBKZJYUWFPMYTCIU5Y4Y", "domain": "home.imedidata.com", "path": "/", "expires": 1780181334.243534, "httpOnly": false, "secure": false, "sameSite": "Lax"}], "origins": [{"origin": "https://home.imedidata.com", "localStorage": [{"name": "unleash:repository:sessionId", "value": "\"351450381\""}, {"name": "i18nextLng", "value": "eng"}, {"name": "_pendo_visitorId.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"ttl\":1788428834772,\"value\":\"vbuzalka@its.jnj.com\"}"}, {"name": "_pendo_accountId.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"ttl\":1788428834785,\"value\":\"NOT_A_STUDY_ENVIRONMENT\"}"}, {"name": "_pendo_utm.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"channel\":\"Referral\",\"referrer\":\"login.imedidata.com\"}"}, {"name": "_pendo_meta.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"ttl\":1788428834772,\"value\":665726537}"}, {"name": "unleash:repository:repo", "value": "[{\"name\":\"platform_admin_client_level_mdm\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_cloudadmin_downloads\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_global_nav_rollout\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_icat_bulk_sea_removal\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_icat_roles\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_people_list\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_admin_ssu_enable_cdo_updates\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_context_support\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_eks_etl\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_eks_use_processes\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_enable_new_stored_procedures\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_enable_stored_procedures_parallel_execution\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_extractor_rollout\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_rave_db_alias\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_analytics_ts_rollout\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_applinks_skip_rsg_quirk\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_assistant_dynamodb\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_assistant_store_agui_events_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_assistant_use_agent_registry\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_assistant_use_dynamic_agent_config\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_broadcast_notification_enable_roles\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_enable_1x\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_enable_scim_user_heartbeat\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_enforce_eula\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_inclusive_namespaces\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cas_remember_multi_user\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_default_role_selection\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_1x_forward_navigation\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_faro\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_linked_accounts\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_range_request_for_elearning\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_enable_service_now\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_inject_scripts\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_patients_clear_action_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_se_only_roles_on_sites\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_checkmate_send_user_activity\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cloud_admin_term_changes\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_cloud_admin_tm_unblinded\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_csa_cache_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_csa_detect_max_parallel_calls\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_consume_user_deactivated_attr\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_daltonized_autogen_roles_app_bb_mapping\",\"enabled\":true,\"variant\":{\"name\":\"all_special_case_apps\",\"enabled\":true,\"payload\":{\"type\":\"json\",\"value\":\"{\\n \\\"5b3a22d0-5193-4604-822e-2e1bacfba880\\\": \\\"work_with_documents_and_tasks\\\",\\n \\\"1b28a9f0-16ed-464e-9635-c23c351b26cb\\\":\\n \\\"access_site_cloud_end_of_study_eos\\\",\\n \\\"1b44906e-cc4f-40d0-91ce-54801c728527\\\":\\n \\\"meds_reporter_standard_reports\\\"\\n}\"}},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_enable_study_startup_applied_permissions\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_grants_use_advisory_locks\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_kafka_for_study_environment_sites\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_neo_elevate_swap_owner_building_blocks\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_no_reader_role_cascade\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_priv_scoped_bulk_operable_uri_case_fix\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_scientist_cds_level_items_use_candidate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_scientist_cte_function_use_candidate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_scientist_priv_index_better_redis_use_candidate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_uppercase_uuid_operables_special_loading_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_dalton_use_conduct_only_attribute_collections\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_daltonui_bb_group_categorization\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_datahub_enable_custom_code_filter\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_graphql_other_sorting_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_graphql_ses_sorting_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_graphql_study_group_sorting_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_graphql_study_sorting_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_hercules_enable_delete_dj_by_schedule_uuid\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_hercules_expire_executions_without_offset\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_account_activation_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_account_linkage_request_onex_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_account_number_request_onex_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_app_type_groups_api\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_assign_any_apps\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_auto_accept_invitations\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_bulk_create_study_site_assignments\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_change_email_confirmation_onex_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_change_password_confirmation_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_dalton_sync_app_roles\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_disable_individual_site_ownership\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_disable_v1_api_user_auth_via_soap\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_duplicate_activation_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_bulk_sqs_batching\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_knowledge_hub_links\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_leaked_passwords_check_on_activate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_leaked_passwords_check_on_update\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_new_certificate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_non_mcc_tenjin_mapping_sync\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_enable_sgi_si_archon_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_expired_password_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_export_course_mappings\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_external_edc_feature\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_filter_hidden_apps\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_forgotten_password_1x_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_gnav_enable_users_if_they_are_disabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_ignore_email_domains_for_mfa\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_manage_elearning\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_manipulate_sgi_prevention\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mcc_enable_sgi_si_archon_notification\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mda_disable_invitations_fallback\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mda_process_invitations_with_plinth\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mda_sync_non_mcc_course_override_with_tenjin\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_mfa_enforcement_notice\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_notification_center_link\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_redirect_all_users_to_global_nav\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_remove_help_center_link\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_skip_update_app_assignments_enabled_at\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_stop_multi_aar_updates_on_enabled_at\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_study_site_pi_to_tm_job_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_trigger_bbs_rename\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_update_telephone_search_ff\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_imedidata_use_elearning_status\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mcc_1x_manage_organizations_landing_page\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_1x_manage_sites\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_1x_site_administration\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_access_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_app_names\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_enable_address_three\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_onex_manage_teams\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":true,\"impressionData\":true},{\"name\":\"platform_mccadmin_study_ip\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_study_program\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_team_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mccadmin_use_cdo_report_api\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_mediloader_allow_updates_any_apps\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_name_format_localization\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_calendar_via_smtp\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_enable_mfe\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_enable_migrated_types\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_enable_rate_limit\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_notification_center_enable_types_api\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_participant_events_participant_events_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_phoenix_access_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_phoenix_team_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_access_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_allow_blank_roles\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_allow_geo_location_on_address\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_remove_homepage_handling\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_study_apps_skip_post\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_team_mgmt_locked_study\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_plinth_user_summaries_user_uuid_lookup\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_collapsible_left_nav\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_audit_viewer\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_client_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_search_dropdown\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_site_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_sites_dropdown_search_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_studies_dropdown_search_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_study_group_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_study_sort\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_support_portal_link\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_val_portal\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_enable_zoomin\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_hide_chat_with_support\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_hide_report_an_issue\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_new_notification_center\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_portal_new_user_profile\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_proxy_enable_websocket_rtt_measurement\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_proxy_enforce_mfa\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_proxy_user_activation\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_recenthistory_consume_replay_events\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_references_iso_upgrade\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_saa_lambda_processing_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_shared_fetch_new_roles_use_hercules\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_shared_role_based_elearning_ui\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_bulk_fetch_subject_sync\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_bypass_internal_ct_role_cache\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_crf_versions_enabled\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_index_api_db_paging\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_kafka_post_endpoint\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_thread_safe_subject_auditing\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_subjects_use_new_df_msk_cluster\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_check_cascade_course_mapping\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_new_course_completion\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_outbox\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_scientist_assigned_courses_use_candidate\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_tenjin_sidekiq_authentication\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_1x_password_reset\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_enable_linked_accounts\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_linked_account_enhancement\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_recent_sites_without_app_context\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_recent_studies_without_app_context\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_redesign_my_courses\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_ui_remove_imed_courses\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_user_nav_data_product_enable_apps_cron\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_user_nav_data_product_enable_events_cron\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_va_clean_patient_tracker\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_va_kri\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false},{\"name\":\"platform_va_qtl\",\"enabled\":true,\"variant\":{\"name\":\"disabled\",\"enabled\":false,\"payload\":null},\"impression_data\":false,\"impressionData\":false}]"}, {"name": "_pendo___sg__.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"visitormetadata\":{\"agent__email\":\"vbuzalka@its.jnj.com\"}}"}, {"name": "_pendo_sessionId.f1fccb65-26a8-4237-68a0-b94145c31070", "value": "{\"sessionId\":\"msozFcFB1PnekuZo\",\"timestamp\":1779788834782}"}]}]} \ No newline at end of file diff --git a/Medidata/debug_shots/after-role.png b/Medidata/debug_shots/after-role.png new file mode 100644 index 0000000..b4fff29 Binary files /dev/null and b/Medidata/debug_shots/after-role.png differ diff --git a/Medidata/debug_shots/after-site-group.png b/Medidata/debug_shots/after-site-group.png new file mode 100644 index 0000000..eb73db3 Binary files /dev/null and b/Medidata/debug_shots/after-site-group.png differ diff --git a/Medidata/debug_shots/after-study.png b/Medidata/debug_shots/after-study.png new file mode 100644 index 0000000..effa038 Binary files /dev/null and b/Medidata/debug_shots/after-study.png differ diff --git a/Medidata/debug_shots/download-window.png b/Medidata/debug_shots/download-window.png new file mode 100644 index 0000000..bb3827f Binary files /dev/null and b/Medidata/debug_shots/download-window.png differ diff --git a/Medidata/debug_shots/report-opened.png b/Medidata/debug_shots/report-opened.png new file mode 100644 index 0000000..799ef1a Binary files /dev/null and b/Medidata/debug_shots/report-opened.png differ diff --git a/Medidata/debug_shots/reporter.png b/Medidata/debug_shots/reporter.png new file mode 100644 index 0000000..1911c42 Binary files /dev/null and b/Medidata/debug_shots/reporter.png differ diff --git a/Medidata/debug_shots/select-role.png b/Medidata/debug_shots/select-role.png new file mode 100644 index 0000000..740c69d Binary files /dev/null and b/Medidata/debug_shots/select-role.png differ diff --git a/Medidata/download_edc_datalistings.py b/Medidata/download_edc_datalistings.py index d9cf75a..1bf803e 100644 --- a/Medidata/download_edc_datalistings.py +++ b/Medidata/download_edc_datalistings.py @@ -72,6 +72,15 @@ def wait_load(page, extra_ms=1000): def dbg(page, label): print(f"[{label}] URL: {page.url}") + try: + from pathlib import Path + shots = Path(__file__).parent / "debug_shots" + shots.mkdir(exist_ok=True) + path = shots / f"{label}.png" + page.screenshot(path=str(path), full_page=True) + print(f"[{label}] screenshot: {path}") + except Exception as e: + print(f"[{label}] screenshot failed: {e}") def extract_study_label(study_search: str) -> str: @@ -178,16 +187,32 @@ def select_role(page): print(f" Vybráno: '{txt}'") break + clicked = False for btn_sel in ['input[value="Continue"]', 'input[type="submit"]', 'button:has-text("Continue")', 'button[type="submit"]']: try: btn = page.query_selector(btn_sel) except Exception: - break + continue if btn: - btn.click() - wait_load(page, 2000) - break + try: + with page.expect_navigation(timeout=15_000): + btn.click() + clicked = True + break + except PWTimeout: + print(f" Click on {btn_sel} nezpůsobil navigaci, zkouším další...") + continue + + if not clicked: + print(" Fallback: submituji formulář přes JS...") + try: + with page.expect_navigation(timeout=15_000): + page.evaluate("document.forms[0] && document.forms[0].submit()") + except PWTimeout: + print(" JS submit fallback také neprošel.") + + wait_load(page, 1500) dbg(page, "after-role") @@ -404,8 +429,12 @@ def download_datalisting(study: str, forms: list[str], country: str | None = Non results = [] with sync_playwright() as p: - browser = p.chromium.launch(headless=False, slow_mo=200) - ctx_kwargs = {"accept_downloads": True} + browser = p.chromium.launch( + headless=False, + slow_mo=200, + args=["--start-maximized"], + ) + ctx_kwargs = {"accept_downloads": True, "no_viewport": True} use_saved = auth_valid() if use_saved: diff --git a/Medidata/downloads/2026-05-30_07-21_EDC_UCO3001_CZE_DateofVisit_DataListing.csv b/Medidata/downloads/2026-05-30_07-21_EDC_UCO3001_CZE_DateofVisit_DataListing.csv new file mode 100644 index 0000000..69292a1 --- /dev/null +++ b/Medidata/downloads/2026-05-30_07-21_EDC_UCO3001_CZE_DateofVisit_DataListing.csv @@ -0,0 +1,54 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892067","Screening","3","Date of Visit","31359746","0","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260219 07:41:15.130","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2945834","Week I-2 (1)","8","Date of Visit","32101284","0","04 Mar 2026 09:29:40:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260304 09:29:40.097","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2976291","Week I-4 (1)","9","Date of Visit","32521333","0","18 Mar 2026 06:52:32:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260505 09:12:30.347","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","212080","CZ100012004","6330","3220128","Screening","3","Date of Visit","35406055","0","28 May 2026 07:55:01:110","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 MAY 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260528 07:55:01.110","","" +"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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260412 15:10:26.887","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","3060855","Week I-2 (1)","8","Date of Visit","33641968","0","12 Apr 2026 18:13:09:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260420 13:24:47.817","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997818","Screening","3","Date of Visit","32821084","0","12 Mar 2026 09:38:16:330","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260312 09:38:16.330","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3051358","Week I-0 (1)","7","Date of Visit","33524299","0","08 Apr 2026 06:12:47:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260408 06:12:47.737","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3052881","Week I-2 (1)","8","Date of Visit","33545351","0","23 Apr 2026 11:57:45:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260309 11:03:26.887","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3027462","Week I-0 (1)","7","Date of Visit","33207977","0","26 Mar 2026 11:25:10:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260326 11:25:10.850","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3035611","Week I-2 (1)","8","Date of Visit","33313608","0","10 Apr 2026 08:08:17:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260410 08:08:17.787","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3059227","Week I-4 (1)","9","Date of Visit","33624340","0","24 Apr 2026 08:57:18:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260424 08:57:18.310","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044287","Screening","3","Date of Visit","33430635","0","09 Apr 2026 09:17:41:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260421 09:22:29.297","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","202520","CZ100162001","6330","3220454","Week I-0 (1)","7","Date of Visit","35411085","0","28 May 2026 14:20:37:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 MAY 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260528 14:20:37.320","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","211989","CZ100162002","6330","3218006","Screening","3","Date of Visit","35379129","0","28 May 2026 14:15:14:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAY 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260528 14:15:14.770","","" +"CZE","9759","DD5-CZ10020","Fakultni Thomayerova nemocnice","201661","CZ100201001","6330","3061818","Screening","3","Date of Visit","33654612","0","15 Apr 2026 19:26:15:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260422 12:15:47.873","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","3051003","Week I-0 (1)","7","Date of Visit","33519073","0","28 Apr 2026 06:15:03:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260428 06:15:03.510","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","3079851","Week I-2 (1)","8","Date of Visit","33929727","0","28 Apr 2026 06:15:59:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260428 06:15:59.870","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880184","Screening","3","Date of Visit","31215209","0","06 Mar 2026 10:59:41:280","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 JAN 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260306 10:59:41.280","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894251","Screening","3","Date of Visit","31388300","0","27 Feb 2026 14:50:20:233","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 JAN 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260227 14:50:20.233","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965444","Screening","3","Date of Visit","32375566","0","02 Mar 2026 12:48:21:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260302 12:48:21.227","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2989688","Week I-0 (1)","7","Date of Visit","32706051","0","09 Mar 2026 10:14:05:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260309 10:14:05.780","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2990136","Week I-2 (1)","8","Date of Visit","32712620","0","27 Mar 2026 07:03:19:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260324 12:11:50.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975900","Screening","3","Date of Visit","32515721","0","04 Mar 2026 11:15:51:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260304 11:15:51.773","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3056606","Week I-0 (1)","7","Date of Visit","33592277","0","09 Apr 2026 09:45:00:203","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260409 09:45:00.203","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3056976","Week I-2 (1)","8","Date of Visit","33596878","0","23 Apr 2026 06:45:23:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:39.890","GMT","20260505 09:30:00.837","","" diff --git a/Medidata/downloads/2026-05-30_07-21_EDC_UCO3001_CZE_TrialDispositionCompletion-Discontinuation_DataListing.csv b/Medidata/downloads/2026-05-30_07-21_EDC_UCO3001_CZE_TrialDispositionCompletion-Discontinuation_DataListing.csv new file mode 100644 index 0000000..6406f62 --- /dev/null +++ b/Medidata/downloads/2026-05-30_07-21_EDC_UCO3001_CZE_TrialDispositionCompletion-Discontinuation_DataListing.csv @@ -0,0 +1,4 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","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","CZE","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:03.877","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","CZE","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:03.877","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","CZE","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:21:03.877","GMT","20260324 12:12:25.007","","" diff --git a/Medidata/downloads/2026-05-30_07-22_EDC_UCO3001_CZE_ConcomitantTherapy_DataListing.csv b/Medidata/downloads/2026-05-30_07-22_EDC_UCO3001_CZE_ConcomitantTherapy_DataListing.csv new file mode 100644 index 0000000..0239fb0 --- /dev/null +++ b/Medidata/downloads/2026-05-30_07-22_EDC_UCO3001_CZE_ConcomitantTherapy_DataListing.csv @@ -0,0 +1,91 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","31359736","1","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MEDROL","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","METHYLPREDNISOLONE","CMTRT_RXPREF","MEDROL [METHYLPREDNISOLONE]","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000496 01 001","CMTRT_RXPREF_CODE","000496 01 003","CMTRT_TRADE_NAME_CODE","Therapeutic or Diagnostic Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","16","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","05 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","13 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33076414","2","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","APAURIN","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","ANXIOLYTICS","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","DIAZEPAM","CMTRT_RXPREF","APAURIN","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05B","CMTRT_ATC3_CODE","N05BA","CMTRT_ATC4_CODE","000170 01 001","CMTRT_RXPREF_CODE","000170 01 016","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","‘ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","5 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","5 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33076455","3","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMAL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL HYDROCHLORIDE","CMTRT_RXPREF","TRAMAL","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 02 001","CMTRT_RXPREF_CODE","005992 02 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","‘ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","5 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","5 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33544926","4","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VENTOLIN","Medication or Therapy","RESPIRATORY SYSTEM","CMTRT_ATC1","DRUGS FOR OBSTRUCTIVE AIRWAY DISEASES","CMTRT_ATC2","ADRENERGICS FOR SYSTEMIC USE","CMTRT_ATC3","SELECTIVE BETA-2-ADRENORECEPTOR AGONISTS","CMTRT_ATC4","SALBUTAMOL","CMTRT_RXPREF","VENTOLIN [SALBUTAMOL]","CMTRT_TRADE_NAME","R","CMTRT_ATC1_CODE","R03","CMTRT_ATC2_CODE","R03C","CMTRT_ATC3_CODE","R03CC","CMTRT_ATC4_CODE","001395 01 001","CMTRT_RXPREF_CODE","001395 01 002","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#001 > ASTMA BRONCHIALE","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","100","Dose","Milligram per Kilogram","Dose Unit","Inhalant","Dose Form","Oral","Route","As Necessary","Frequency","UN UNK 1990","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33544975","5","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ASACOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","ASACOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ULCERATIVE COLITIS","If indication is Prophylaxis or Other, specify","1600","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","1 JUL 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33545029","6","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KALNORMIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","POTASSIUM","CMTRT_ATC3","POTASSIUM","CMTRT_ATC4","POTASSIUM CHLORIDE","CMTRT_RXPREF","KALNORMIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12B","CMTRT_ATC3_CODE","A12BA","CMTRT_ATC4_CODE","000314 02 001","CMTRT_RXPREF_CODE","000314 02 063","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HYPOKALEMIE DURING DIARHEA","If indication is Prophylaxis or Other, specify","1","Dose","Gram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","1 JUL 2025","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33596093","7","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","04 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","04 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","35395344","8","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","05 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","05 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","35395534","9","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MEDROL","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","METHYLPREDNISOLONE","CMTRT_RXPREF","MEDROL [METHYLPREDNISOLONE]","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000496 01 001","CMTRT_RXPREF_CODE","000496 01 003","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","12","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","13 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","19 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","35395558","10","27 May 2026 14:45:58:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MEDROL","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","METHYLPREDNISOLONE","CMTRT_RXPREF","MEDROL [METHYLPREDNISOLONE]","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000496 01 001","CMTRT_RXPREF_CODE","000496 01 003","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","10","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","20 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 14:45:58.977","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","32277658","1","27 May 2026 13:24:53:367","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","APAURIN","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","ANXIOLYTICS","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","DIAZEPAM","CMTRT_RXPREF","APAURIN","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05B","CMTRT_ATC3_CODE","N05BA","CMTRT_ATC4_CODE","000170 01 001","CMTRT_RXPREF_CODE","000170 01 016","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","18 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 13:24:53.367","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","33076365","2","27 May 2026 13:24:53:367","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMAL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL HYDROCHLORIDE","CMTRT_RXPREF","TRAMAL","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 02 001","CMTRT_RXPREF_CODE","005992 02 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","18 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 13:24:53.367","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","33606079","5","27 May 2026 13:24:53:370","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","17 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","17 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 13:24:53.370","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","33606357","6","27 May 2026 13:24:53:370","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","EUTHYROX","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","THYROID THERAPY","CMTRT_ATC2","THYROID PREPARATIONS","CMTRT_ATC3","THYROID HORMONES","CMTRT_ATC4","LEVOTHYROXINE SODIUM","CMTRT_RXPREF","EUTHYROX","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H03","CMTRT_ATC2_CODE","H03A","CMTRT_ATC3_CODE","H03AA","CMTRT_ATC4_CODE","000680 02 001","CMTRT_RXPREF_CODE","000680 02 007","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#001 > HYPOTYREOSIS","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","50","Dose","Microgram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2000","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 13:24:53.370","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","35393286","7","27 May 2026 13:24:53:883","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAMINE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAMINE","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 006","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Gram","Dose Unit","Suspension","Dose Form","Oral","Route","Daily","Frequency","13 OCT 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 13:24:53.883","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","204115","CZ100012003","6330","3116488","Concomitant Therapy","65","Concomitant Therapy","34392060","1","27 May 2026 15:27:08:090","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","12 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","12 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260527 15:27:08.090","","" +"CZE","9707","DD5-CZ10003","Gastromedic, Ltd.","210634","CZ100032001","6330","3189732","Concomitant Therapy","65","Concomitant Therapy","34994299","1","13 May 2026 13:34:23:947","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","IMASUP","Medication or Therapy","ANTINEOPLASTIC AND IMMUNOMODULATING AGENTS","CMTRT_ATC1","IMMUNOSUPPRESSANTS","CMTRT_ATC2","IMMUNOSUPPRESSANTS","CMTRT_ATC3","OTHER IMMUNOSUPPRESSANTS","CMTRT_ATC4","AZATHIOPRINE","CMTRT_RXPREF","IMASUP","CMTRT_TRADE_NAME","L","CMTRT_ATC1_CODE","L04","CMTRT_ATC2_CODE","L04A","CMTRT_ATC3_CODE","L04AX","CMTRT_ATC4_CODE","000015 01 001","CMTRT_RXPREF_CODE","000015 01 112","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","UN DEC 2021","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260513 13:34:23.947","","" +"CZE","9707","DD5-CZ10003","Gastromedic, Ltd.","210634","CZ100032001","6330","3189732","Concomitant Therapy","65","Concomitant Therapy","35026291","2","13 May 2026 13:34:23:947","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","SALOFALK","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","SALOFALK [MESALAZINE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 016","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3000","Dose","Milligram","Dose Unit","Powder","Dose Form","Oral","Route","Daily","Frequency","UN DEC 2017","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260513 13:34:23.947","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","2934306","Concomitant Therapy","65","Concomitant Therapy","31932382","0","23 May 2026 19:44:36:667","Tier 1","SDVTier","No","Were any medication(s)/therapy(ies) taken?","","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","","Dose","","Dose Unit","","Dose Form","","Route","","Frequency","","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260523 19:44:36.667","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","33869425","1","19 May 2026 13:24:22:407","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ANOPYRIN","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260519 13:24:22.407","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","35106828","2","19 May 2026 13:24:22:410","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","SORTIS","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","LIPID MODIFYING AGENTS","CMTRT_ATC2","LIPID MODIFYING AGENTS, PLAIN","CMTRT_ATC3","HMG COA REDUCTASE INHIBITORS","CMTRT_ATC4","ATORVASTATIN CALCIUM","CMTRT_RXPREF","SORTIS","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C10","CMTRT_ATC2_CODE","C10A","CMTRT_ATC3_CODE","C10AA","CMTRT_ATC4_CODE","013261 02 001","CMTRT_RXPREF_CODE","013261 02 002","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260519 13:24:22.410","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","35106829","3","19 May 2026 13:24:22:413","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","BISOPROLOL","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","BETA BLOCKING AGENTS","CMTRT_ATC2","BETA BLOCKING AGENTS","CMTRT_ATC3","BETA BLOCKING AGENTS, SELECTIVE","CMTRT_ATC4","BISOPROLOL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C07","CMTRT_ATC2_CODE","C07A","CMTRT_ATC3_CODE","C07AB","CMTRT_ATC4_CODE","008026 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260519 13:24:22.413","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","35106830","4","19 May 2026 13:24:22:413","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PERINDOPRIL","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","AGENTS ACTING ON THE RENIN-ANGIOTENSIN SYSTEM","CMTRT_ATC2","ACE INHIBITORS, PLAIN","CMTRT_ATC3","ACE INHIBITORS, PLAIN","CMTRT_ATC4","PERINDOPRIL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C09","CMTRT_ATC2_CODE","C09A","CMTRT_ATC3_CODE","C09AA","CMTRT_ATC4_CODE","007907 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260519 13:24:22.413","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","202008","CZ100092002","6330","3069538","Concomitant Therapy","65","Concomitant Therapy","33769101","1","23 Apr 2026 12:29:44:207","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ASACOL (MESALAZINE)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","ASACOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 002","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1600","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","10 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260423 12:29:44.207","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","202008","CZ100092002","6330","3069538","Concomitant Therapy","65","Concomitant Therapy","34071908","2","23 Apr 2026 12:29:44:457","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MUTAFLOR (ESCHERICHIA COLI)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC3","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC4","ESCHERICHIA COLI","CMTRT_RXPREF","MUTAFLOR","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07F","CMTRT_ATC3_CODE","A07FA","CMTRT_ATC4_CODE","005931 01 001","CMTRT_RXPREF_CODE","005931 01 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","SUPPLEMENTARY","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","10 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260423 12:29:44.457","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32821074","1","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAMIN P.O.","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAMINE","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 006","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3","Dose","Gram","Dose Unit","Not Applicable","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2019","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32849853","2","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","AZATHIOPRINUM (IMASUP)","Medication or Therapy","ANTINEOPLASTIC AND IMMUNOMODULATING AGENTS","CMTRT_ATC1","IMMUNOSUPPRESSANTS","CMTRT_ATC2","IMMUNOSUPPRESSANTS","CMTRT_ATC3","OTHER IMMUNOSUPPRESSANTS","CMTRT_ATC4","AZATHIOPRINE","CMTRT_RXPREF","IMASUP","CMTRT_TRADE_NAME","L","CMTRT_ATC1_CODE","L04","CMTRT_ATC2_CODE","L04A","CMTRT_ATC3_CODE","L04AX","CMTRT_ATC4_CODE","000015 01 001","CMTRT_RXPREF_CODE","000015 01 112","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","UN JUN 2022","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32849931","3","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ASACOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","ASACOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 002","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4000","Dose","Milligram","Dose Unit","Suspension","Dose Form","Rectal","Route","Three Times Weekly","Frequency","UN DEC 2021","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32850610","4","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","OMEPRAZOLUM (HELICID)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","OMEPRAZOLE","CMTRT_RXPREF","HELICID [OMEPRAZOLE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","006612 01 001","CMTRT_RXPREF_CODE","006612 01 033","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","WORSENING CONDITION SINCE LAST CHECK-UP AT ANOTHER HOSPITAL","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Twice Daily","Frequency","04 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32899566","5","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FERRINJECT 500MG (FERRUM 50MG)","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON, PARENTERAL PREPARATIONS","CMTRT_ATC4","FERRIC CARBOXYMALTOSE","CMTRT_RXPREF","FERRINJECT","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AC","CMTRT_ATC4_CODE","000235 23 001","CMTRT_RXPREF_CODE","000235 23 016","CMTRT_TRADE_NAME_CODE","Therapeutic or Diagnostic Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","500","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","18 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32899579","6","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VIGANTOL (COLECALCIFEROLUM)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","VITAMINS","CMTRT_ATC2","VITAMIN A AND D, INCL. COMBINATIONS OF THE TWO","CMTRT_ATC3","VITAMIN D AND ANALOGUES","CMTRT_ATC4","COLECALCIFEROL","CMTRT_RXPREF","VIGANTOL [COLECALCIFEROL]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A11","CMTRT_ATC2_CODE","A11C","CMTRT_ATC3_CODE","A11CC","CMTRT_ATC4_CODE","003185 01 001","CMTRT_RXPREF_CODE","003185 01 002","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","15000","Dose","International Unit","Dose Unit","Liquid","Dose Form","Oral","Route","Weekly","Frequency","UN UNK 2026","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32899796","7","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ALGIFEN","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#001 > 22APR2026 > ABDOMINAL PAIN WITH CRAMPS","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20-30","Dose","Drop","Dose Unit","Liquid","Dose Form","Oral","Route","As Necessary","Frequency","22 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","34928347","8","11 May 2026 11:34:10:387","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","NOVALGIN 500MG","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OTHER ANALGESICS AND ANTIPYRETICS","CMTRT_ATC3","PYRAZOLONES","CMTRT_ATC4","METAMIZOLE SODIUM","CMTRT_RXPREF","NOVALGIN [METAMIZOLE SODIUM]","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02B","CMTRT_ATC3_CODE","N02BB","CMTRT_ATC4_CODE","062767 04 001","CMTRT_RXPREF_CODE","062767 04 002","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#001 > 22APR2026 > ABDOMINAL PAIN WITH CRAMPS","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1-2","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","As Necessary","Frequency","07 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260511 11:34:10.387","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","32319356","1","21 May 2026 07:09:34:017","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PENTASA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","PENTASA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 004","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2","Dose","Gram","Dose Unit","For Suspension","Dose Form","Oral","Route","Twice Daily","Frequency","25 JUN 2019","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260521 07:09:34.017","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","33190707","2","21 May 2026 07:09:34:017","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE","CMTRT_RXPREF","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","119690 02 001","CMTRT_RXPREF_CODE","119690 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Other","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","11 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260521 07:09:34.017","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","33190713","3","21 May 2026 07:09:34:017","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","50","Dose","Microgram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","12 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","12 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260521 07:09:34.017","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","33190715","4","21 May 2026 07:09:34:197","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","3","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","12 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","12 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260521 07:09:34.197","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044281","Concomitant Therapy","65","Concomitant Therapy","33430625","1","25 May 2026 09:02:34:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE","CMTRT_RXPREF","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","119690 02 001","CMTRT_RXPREF_CODE","119690 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Other","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","20 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","20 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260525 09:02:34.977","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044281","Concomitant Therapy","65","Concomitant Therapy","35115169","2","25 May 2026 09:02:34:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","50","Dose","Microgram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","21 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","21 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260525 09:02:34.977","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044281","Concomitant Therapy","65","Concomitant Therapy","35115218","3","25 May 2026 09:02:34:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","3","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","21 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","21 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260525 09:02:34.977","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","202520","CZ100162001","6330","3079407","Concomitant Therapy","65","Concomitant Therapy","33923254","0","21 Apr 2026 13:37:28:920","Tier 1","SDVTier","No","Were any medication(s)/therapy(ies) taken?","","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","","Dose","","Dose Unit","","Dose Form","","Route","","Frequency","","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260421 13:37:28.920","","" +"CZE","9759","DD5-CZ10020","Fakultni Thomayerova nemocnice","201661","CZ100201001","6330","3061812","Concomitant Therapy","65","Concomitant Therapy","33654602","1","19 May 2026 15:07:23:010","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREDNISON","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","PREDNISON","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","000447 01 056","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","12 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","17 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260519 15:07:23.010","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","32275036","1","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KREON","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DIGESTIVES, INCL. ENZYMES","CMTRT_ATC2","DIGESTIVES, INCL. ENZYMES","CMTRT_ATC3","ENZYME PREPARATIONS","CMTRT_ATC4","PANCREATIN","CMTRT_RXPREF","KREON","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A09","CMTRT_ATC2_CODE","A09A","CMTRT_ATC3_CODE","A09AA","CMTRT_ATC4_CODE","000147 01 001","CMTRT_RXPREF_CODE","000147 01 013","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#006 > CHRONIC PANCREATITIS","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","25000","Dose","Unit","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","UN UNK 2007","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260507 08:22:55.643","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","33999090","2","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ELIQUIS","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTITHROMBOTIC AGENTS","CMTRT_ATC2","ANTITHROMBOTIC AGENTS","CMTRT_ATC3","DIRECT FACTOR XA INHIBITORS","CMTRT_ATC4","APIXABAN","CMTRT_RXPREF","ELIQUIS","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B01","CMTRT_ATC2_CODE","B01A","CMTRT_ATC3_CODE","B01AF","CMTRT_ATC4_CODE","062595 01 001","CMTRT_RXPREF_CODE","062595 01 002","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#007 > DEEP VEIN TROMBOSIS","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2.5","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","UN UNK 2021","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260507 08:22:55.643","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","33999365","3","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","3","Dose","Milligram","Dose Unit","Liquid","Dose Form","Intravenous","Route","Once","Frequency","16 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","16 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260507 08:22:55.643","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","34000164","4","07 May 2026 08:22:55:840","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","100","Dose","Microgram","Dose Unit","Liquid","Dose Form","Intravenous","Route","Once","Frequency","16 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","16 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260507 08:22:55.840","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","34000269","5","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Daily","Frequency","15 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","16 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260507 08:22:55.643","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","31215199","1","16 Mar 2026 14:28:08:803","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREDNISON","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","PREDNISON","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","000447 01 056","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","10","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","14 OCT 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.803","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538897","2","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","OMEGA 3 (EPA (EICOSAPENTAENOIC ACID, DOCOSAHEXAENOIC ACID,ALPHA-LINOLENIC ACID)","Medication or Therapy","VARIOUS","CMTRT_ATC1","GENERAL NUTRIENTS","CMTRT_ATC2","OTHER NUTRIENTS","CMTRT_ATC3","OTHER COMBINATIONS OF NUTRIENTS","CMTRT_ATC4","FISH OIL","CMTRT_RXPREF","OMEGA 3 [FISH OIL]","CMTRT_TRADE_NAME","V","CMTRT_ATC1_CODE","V06","CMTRT_ATC2_CODE","V06D","CMTRT_ATC3_CODE","V06DX","CMTRT_ATC4_CODE","013341 01 001","CMTRT_RXPREF_CODE","013341 01 002","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","FOOD SUPPLEMENT","If indication is Prophylaxis or Other, specify","1","Dose","Capsule","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","15 JAN 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538899","3","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","POLYMALTOSUM FERRICUM","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON TRIVALENT, ORAL PREPARATIONS","CMTRT_ATC4","IRON POLYSACCHARIDE COMPLEX","CMTRT_RXPREF","IRON POLYMALTOSE COMPLEX","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AB","CMTRT_ATC4_CODE","012145 01 001","CMTRT_RXPREF_CODE","012145 01 029","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","UC DISEASE","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","18 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538921","4","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAZIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAZIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 048","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Gram","Dose Unit","For Suspension","Dose Form","Oral","Route","Daily","Frequency","4 AUG 2023","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538922","5","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CHLORELLA","Medication or Therapy","VARIOUS","CMTRT_ATC1","UNSPECIFIED HERBAL AND TRADITIONAL MEDICINE","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","CHLORELLA SPP.","CMTRT_RXPREF","","CMTRT_TRADE_NAME","V","CMTRT_ATC1_CODE","V90","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","069111 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","FOOD SUPPLEMENT","If indication is Prophylaxis or Other, specify","5","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","15 JAN 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538923","6","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PANTOPRAZOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","PANTOPRAZOLE","CMTRT_RXPREF","PANTOPRAZOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","012632 01 001","CMTRT_RXPREF_CODE","012632 01 052","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","40","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","20 JUN 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538954","7","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VITAMINE D3","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","VITAMINS","CMTRT_ATC2","VITAMIN A AND D, INCL. COMBINATIONS OF THE TWO","CMTRT_ATC3","VITAMIN D AND ANALOGUES","CMTRT_ATC4","COLECALCIFEROL","CMTRT_RXPREF","VITAMINE D3","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A11","CMTRT_ATC2_CODE","A11C","CMTRT_ATC3_CODE","A11CC","CMTRT_ATC4_CODE","003185 01 001","CMTRT_RXPREF_CODE","003185 01 874","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1000","Dose","Other","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","26 NOV 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538963","8","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","GLYCEROL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OTHER DRUGS FOR CONSTIPATION","CMTRT_ATC4","GLYCEROL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AX","CMTRT_ATC4_CODE","002006 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2.5","Dose","Gram","Dose Unit","Suppository","Dose Form","Rectal","Route","As Necessary","Frequency","21 NOV 2023","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32539252","16","16 Mar 2026 14:28:08:813","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","1","Dose","Milliliter","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","18 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.813","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32555351","17","16 Mar 2026 14:28:08:813","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","18 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260316 14:28:08.813","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","31388290","1","15 Mar 2026 16:13:29:883","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","BUDESONID","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","BUDESONIDE","CMTRT_RXPREF","BUDESONID","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","006146 01 001","CMTRT_RXPREF_CODE","006146 01 047","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","9","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","26 FEB 2021","Start Date","","Was the medication/therapy taken prior to the study?","22 DEC 2025","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260315 16:13:29.883","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32391890","2","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAZIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAZIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 048","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3200","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","7 APR 2021","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32391895","3","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","BUDOSENID","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","BUDESONIDE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","006146 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","Suspension","Dose Form","Rectal","Route","Daily","Frequency","19 JUL 2025","Start Date","","Was the medication/therapy taken prior to the study?","22 DEC 2025","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32397940","4","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","RIFAXIMIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFECTIVES","CMTRT_ATC3","ANTIBIOTICS","CMTRT_ATC4","RIFAXIMIN","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07A","CMTRT_ATC3_CODE","A07AA","CMTRT_ATC4_CODE","010611 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","400","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","12 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","19 DEC 2025","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32397941","5","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ARMOLIPID PLUS (BERBERINE, RED YEAST RICE (MONACOLIN K), POLICOSANOL, FOLIC ACID, COENZYME Q10, ASTAXANTHIN)","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","LIPID MODIFYING AGENTS","CMTRT_ATC2","LIPID MODIFYING AGENTS, PLAIN","CMTRT_ATC3","OTHER LIPID MODIFYING AGENTS","CMTRT_ATC4","ASTAXANTHIN;BERBERINE;FOLIC ACID;MONASCUS PURPUREUS;POLICOSANOL;UBIDECARENONE","CMTRT_RXPREF","ARMOLIPID PLUS","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C10","CMTRT_ATC2_CODE","C10A","CMTRT_ATC3_CODE","C10AX","CMTRT_ATC4_CODE","139606 01 001","CMTRT_RXPREF_CODE","139606 01 002","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","SUPPORTING CHOLESTEROL LEVEL AND LIPID METABOLISM","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN MAR 2025","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32398237","6","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREEDNISON","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","22 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","21 JAN 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32398238","7","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PROBIOTICS","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC3","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC4","PROBIOTICS NOS","CMTRT_RXPREF","PROBIOTICS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07F","CMTRT_ATC3_CODE","A07FA","CMTRT_ATC4_CODE","075011 01 001","CMTRT_RXPREF_CODE","075011 01 023","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","UC DISEASE","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","20 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32943346","8","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32943403","9","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMADOL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32375556","1","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREDNISON","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","PREDNISON","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","000447 01 056","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","7.5","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","22 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32391901","2","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KALIUM CHLORATUM","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","POTASSIUM","CMTRT_ATC3","POTASSIUM","CMTRT_ATC4","POTASSIUM CHLORIDE","CMTRT_RXPREF","KALIUM CHLORATUM","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12B","CMTRT_ATC3_CODE","A12BA","CMTRT_ATC4_CODE","000314 02 001","CMTRT_RXPREF_CODE","000314 02 097","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","UCO DISEASE, PREVENTION","If indication is Prophylaxis or Other, specify","500","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","22 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32391909","3","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAZIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAZIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 048","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3000","Dose","Milligram","Dose Unit","Solution","Dose Form","Oral","Route","Daily","Frequency","9 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32395174","5","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PROBIOTICS","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC3","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC4","PROBIOTICS NOS","CMTRT_RXPREF","PROBIOTICS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07F","CMTRT_ATC3_CODE","A07FA","CMTRT_ATC4_CODE","075011 01 001","CMTRT_RXPREF_CODE","075011 01 023","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","20 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32395210","6","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMADOL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32398122","7","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32398155","8","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ARMOLIPID PLUS (BERBERINE, RED YEAST RICE (MONACOLIN K), POLICOSANOL, FOLIC ACID, COENZYME Q10, ASTAXANTHIN)","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","LIPID MODIFYING AGENTS","CMTRT_ATC2","LIPID MODIFYING AGENTS, PLAIN","CMTRT_ATC3","OTHER LIPID MODIFYING AGENTS","CMTRT_ATC4","ASTAXANTHIN;BERBERINE;FOLIC ACID;MONASCUS PURPUREUS;POLICOSANOL;UBIDECARENONE","CMTRT_RXPREF","ARMOLIPID PLUS","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C10","CMTRT_ATC2_CODE","C10A","CMTRT_ATC3_CODE","C10AX","CMTRT_ATC4_CODE","139606 01 001","CMTRT_RXPREF_CODE","139606 01 002","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","SUPPORTING CHOLESTEROL LEVEL AND LIPID METABOLISM","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN MAR 2025","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","33839101","9","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FORTRANS (MACROGOLUM(","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","MACROGOL 4000;POTASSIUM CHLORIDE;SODIUM BICARBONATE;SODIUM CHLORIDE;SODIUM SULFATE ANHYDROUS","CMTRT_RXPREF","FORTRANS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","109430 03 001","CMTRT_RXPREF_CODE","109430 03 005","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3","Dose","Sachet","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","10 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","10 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","33904837","10","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FORTRANS (MAKROGOL)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","MACROGOL 4000;POTASSIUM CHLORIDE;SODIUM BICARBONATE;SODIUM CHLORIDE;SODIUM SULFATE ANHYDROUS","CMTRT_RXPREF","FORTRANS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","109430 03 001","CMTRT_RXPREF_CODE","109430 03 005","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Sachet","Dose Unit","Solution","Dose Form","Oral","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197226","CZ100222004","6330","2969798","Concomitant Therapy","65","Concomitant Therapy","32431107","1","04 Mar 2026 20:42:21:217","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PANTOPRAZOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","PANTOPRAZOLE","CMTRT_RXPREF","PANTOPRAZOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","012632 01 001","CMTRT_RXPREF_CODE","012632 01 052","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","40","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2024","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260304 20:42:21.217","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","32515711","1","26 May 2026 12:25:03:760","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KALNORMIN (KALII CHLORIDUM(","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","POTASSIUM","CMTRT_ATC3","POTASSIUM","CMTRT_ATC4","POTASSIUM CHLORIDE","CMTRT_RXPREF","KALNORMIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12B","CMTRT_ATC3_CODE","A12BA","CMTRT_ATC4_CODE","000314 02 001","CMTRT_RXPREF_CODE","000314 02 063","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","5 JAN 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.760","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","32538733","2","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CALCIUM CARBONATE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","CALCIUM","CMTRT_ATC3","CALCIUM","CMTRT_ATC4","CALCIUM CARBONATE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12A","CMTRT_ATC3_CODE","A12AA","CMTRT_ATC4_CODE","073570 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","500","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","32538803","3","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VITAMINE D3","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","VITAMINS","CMTRT_ATC2","VITAMIN A AND D, INCL. COMBINATIONS OF THE TWO","CMTRT_ATC3","VITAMIN D AND ANALOGUES","CMTRT_ATC4","COLECALCIFEROL","CMTRT_RXPREF","VITAMINE D3","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A11","CMTRT_ATC2_CODE","A11C","CMTRT_ATC3_CODE","A11CC","CMTRT_ATC4_CODE","003185 01 001","CMTRT_RXPREF_CODE","003185 01 874","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","400","Dose","Other","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597152","4","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PROBIOTICS","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","OTHER ALIMENTARY TRACT AND METABOLISM PRODUCTS","CMTRT_ATC2","OTHER ALIMENTARY TRACT AND METABOLISM PRODUCTS","CMTRT_ATC3","VARIOUS ALIMENTARY TRACT AND METABOLISM PRODUCTS","CMTRT_ATC4","PROBIOTICS NOS","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A16","CMTRT_ATC2_CODE","A16A","CMTRT_ATC3_CODE","A16AX","CMTRT_ATC4_CODE","075011 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","1","Dose","Capsule","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","26 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597250","5","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PANTOPRAZOLE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","PANTOPRAZOLE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","012632 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#001 > 24MAR2026 > EPIGASTRIC PAIN","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","40","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Once","Frequency","24 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","24 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597931","6","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","1","Dose","Milliliter","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","1 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","1 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597936","7","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","1 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","1 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33839187","8","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA (MAKROGOL 4000 )","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Sachet","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","31 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","31 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33905279","9","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA (MAKROGOL 4000)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Sachet","Dose Unit","Solution","Dose Form","Oral","Route","Once","Frequency","1 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","1 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34065261","10","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ESOMEPRAZOLE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","ESOMEPRAZOLE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","014793 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#006 > 18APR2026 > ABDOMINAL PAIN","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","20 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","22 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.767","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34065517","11","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ESOMEPRAZOLE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","ESOMEPRAZOLE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","014793 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#006 > 18APR2026 > ABDOMINAL PAIN","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","23 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","5 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.767","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34627843","12","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FERRUM","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON TRIVALENT, ORAL PREPARATIONS","CMTRT_ATC4","IRON","CMTRT_RXPREF","FERRUM","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AB","CMTRT_ATC4_CODE","000235 01 001","CMTRT_RXPREF_CODE","000235 01 184","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","VITAMINE DUE TO UC DISEASE","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","1 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","26 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.767","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34630935","13","26 May 2026 12:25:04:040","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALASINE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3.2","Dose","Gram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","20 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:04.040","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34630936","14","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FERRUM","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON TRIVALENT, ORAL PREPARATIONS","CMTRT_ATC4","IRON","CMTRT_RXPREF","FERRUM","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AB","CMTRT_ATC4_CODE","000235 01 001","CMTRT_RXPREF_CODE","000235 01 184","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","VITAMINE DUE TO UC DISEASE","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","2 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:22:16.967","GMT","20260526 12:25:03.767","","" diff --git a/Medidata/downloads/Zpracovano/2026-05-29_16-45_EDC_UCO3001_ALL_TrialDispositionCompletion-Discontinuation_DataListing.csv b/Medidata/downloads/Zpracovano/2026-05-29_16-45_EDC_UCO3001_ALL_TrialDispositionCompletion-Discontinuation_DataListing.csv new file mode 100644 index 0000000..9a91ae9 --- /dev/null +++ b/Medidata/downloads/Zpracovano/2026-05-29_16-45_EDC_UCO3001_ALL_TrialDispositionCompletion-Discontinuation_DataListing.csv @@ -0,0 +1,274 @@ +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","29 May 2026 13:32:10:783","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260529 13:32:10.783","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260511 13:22:12.433","","" +"BEL","9616","DD5-BE10003","AZ Oostende","212101","BE100032003","6330","3220616","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35465056","0","29 May 2026 13:28:07:090","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","29 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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260529 13:28:07.090","","" +"BRA","9310","DD5-BR10017","BR Trials","201922","BR100172001","6330","3067647","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35417277","0","28 May 2026 12:25:18:613","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","27 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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260528 12:25:18.613","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","28 May 2026 09:42:53:313","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260528 09:42:53.313","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260429 05:28:02.010","","" +"CHN","9180","DD5-CN10026","The Sixth Affiliated Hospital Sun Yat sen University","202643","CN100262002","6330","3082241","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35369372","0","27 May 2026 05:33:37:743","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","14 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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260527 05:33:37.743","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","26 May 2026 05:29:18:410","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","19 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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260526 05:29:18.410","","" +"CHN","9186","DD5-CN10031","The First Affiliated Hospital of Wenzhou Medical University","199293","CN100312003","6330","3015020","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35324545","0","26 May 2026 07:06:49:443","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260526 07:06:49.443","","" +"CHN","9023","DD5-CN10032","The Second Hospital of Hebei Medical University","210496","CN100322003","6330","3186912","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35322386","0","26 May 2026 05:52:49:273","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260526 05:52:49.273","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260515 11:00:25.827","","" +"DEU","9524","DD5-DE10015","Eugastro GmbH","202394","DE100152002","6330","3076824","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35370837","0","27 May 2026 06:43:52:327","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260527 06:43:52.327","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","27 May 2026 14:28:15:430","Tier 5","SDVTier","","Category","","Subcategory","Completed","What was the subjects status? (Derived field)","18 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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260527 14:28:15.430","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260421 16:11:51.260","","" +"GBR","8954","DD5-GB10001","St Georges University Hospitals NHS Foundation Trust","205033","GB100012003","6330","3136479","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35358738","0","26 May 2026 15:13:18:867","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260526 15:13:18.867","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260203 09:44:20.980","","" +"GRC","9598","DD5-GR10003","Evangelismos S A","193777","GR100032003","6330","2897935","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35401676","0","27 May 2026 19:59:16:670","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260527 19:59:16.670","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260330 08:55:10.083","","" +"HUN","9096","DD5-HU10003","Pannónia Magánorvosi Centrum Kft","200294","HU100032002","6330","3035366","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35397290","0","27 May 2026 16:02:18:020","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260527 16:02:18.020","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","29 May 2026 01:37:13:767","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","29 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","PHYSICIAN DECISION","If Other, Specify","","If Withdrawal by Subject, Specify","","If Other, Specify","","Completed Date (CTMS field)","","Discontinued Date (CTMS field)","","Screen Failed Date (CTMS field)","","INACT tracker (operational field)","","Now (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260529 01:37:13.767","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260413 00:13:29.247","","" +"NLD","9595","DD5-NL10004","AMC","202001","NL100042003","6330","3069394","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35352533","0","26 May 2026 11:53:49:853","No Forms","SDVTier","","Category","","Subcategory","Screen Failure","What was the subjects status? (Derived field)","12 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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260526 11:53:49.853","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260420 15:10:23.600","","" +"POL","9932","DD5-PL10015","Promed P. Lach R. Glowacki Sp.j. Centrum Medyczne Promed","199264","PL100152004","6330","3014415","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35419099","0","28 May 2026 13:40:53:850","Tier 1","SDVTier","","Category","","Subcategory","Discontinued","What was the subjects status? (Derived field)","26 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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260528 13:40:53.850","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260409 13:37:41.813","","" +"POL","10063","DD5-PL10036","Medrise Sp. z o.o.","204617","PL100362016","6330","3128031","Screening to end of study","69","Trial Disposition (Completion / Discontinuation)","35356564","0","26 May 2026 13:59:09:393","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260526 13:59:09.393","","" +"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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","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","World","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:45:11.820","GMT","20260312 17:42:22.703","","" diff --git a/Medidata/downloads/Zpracovano/2026-05-29_16-48_EDC_UCO3001_CZE_TrialDispositionCompletion-Discontinuation_DataListing.csv b/Medidata/downloads/Zpracovano/2026-05-29_16-48_EDC_UCO3001_CZE_TrialDispositionCompletion-Discontinuation_DataListing.csv new file mode 100644 index 0000000..ab43ca5 --- /dev/null +++ b/Medidata/downloads/Zpracovano/2026-05-29_16-48_EDC_UCO3001_CZE_TrialDispositionCompletion-Discontinuation_DataListing.csv @@ -0,0 +1,4 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","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","CZE","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:48:46.300","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","CZE","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:48:46.300","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","CZE","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:48:46.300","GMT","20260324 12:12:25.007","","" diff --git a/Medidata/downloads/Zpracovano/2026-05-29_16-49_EDC_UCO3001_CZE_DateofVisit_DataListing.csv b/Medidata/downloads/Zpracovano/2026-05-29_16-49_EDC_UCO3001_CZE_DateofVisit_DataListing.csv new file mode 100644 index 0000000..8a69895 --- /dev/null +++ b/Medidata/downloads/Zpracovano/2026-05-29_16-49_EDC_UCO3001_CZE_DateofVisit_DataListing.csv @@ -0,0 +1,54 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892067","Screening","3","Date of Visit","31359746","0","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260219 07:41:15.130","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2945834","Week I-2 (1)","8","Date of Visit","32101284","0","04 Mar 2026 09:29:40:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260304 09:29:40.097","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2976291","Week I-4 (1)","9","Date of Visit","32521333","0","18 Mar 2026 06:52:32:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260505 09:12:30.347","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","212080","CZ100012004","6330","3220128","Screening","3","Date of Visit","35406055","0","28 May 2026 07:55:01:110","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 MAY 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260528 07:55:01.110","","" +"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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260412 15:10:26.887","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","3060855","Week I-2 (1)","8","Date of Visit","33641968","0","12 Apr 2026 18:13:09:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260420 13:24:47.817","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997818","Screening","3","Date of Visit","32821084","0","12 Mar 2026 09:38:16:330","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260312 09:38:16.330","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3051358","Week I-0 (1)","7","Date of Visit","33524299","0","08 Apr 2026 06:12:47:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260408 06:12:47.737","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3052881","Week I-2 (1)","8","Date of Visit","33545351","0","23 Apr 2026 11:57:45:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260309 11:03:26.887","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3027462","Week I-0 (1)","7","Date of Visit","33207977","0","26 Mar 2026 11:25:10:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260326 11:25:10.850","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3035611","Week I-2 (1)","8","Date of Visit","33313608","0","10 Apr 2026 08:08:17:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260410 08:08:17.787","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3059227","Week I-4 (1)","9","Date of Visit","33624340","0","24 Apr 2026 08:57:18:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260424 08:57:18.310","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044287","Screening","3","Date of Visit","33430635","0","09 Apr 2026 09:17:41:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260421 09:22:29.297","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","202520","CZ100162001","6330","3220454","Week I-0 (1)","7","Date of Visit","35411085","0","28 May 2026 14:20:37:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 MAY 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260528 14:20:37.320","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","211989","CZ100162002","6330","3218006","Screening","3","Date of Visit","35379129","0","28 May 2026 14:15:14:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAY 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260528 14:15:14.770","","" +"CZE","9759","DD5-CZ10020","Fakultni Thomayerova nemocnice","201661","CZ100201001","6330","3061818","Screening","3","Date of Visit","33654612","0","15 Apr 2026 19:26:15:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260422 12:15:47.873","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","3051003","Week I-0 (1)","7","Date of Visit","33519073","0","28 Apr 2026 06:15:03:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260428 06:15:03.510","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","3079851","Week I-2 (1)","8","Date of Visit","33929727","0","28 Apr 2026 06:15:59:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260428 06:15:59.870","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880184","Screening","3","Date of Visit","31215209","0","06 Mar 2026 10:59:41:280","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 JAN 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260306 10:59:41.280","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894251","Screening","3","Date of Visit","31388300","0","27 Feb 2026 14:50:20:233","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 JAN 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260227 14:50:20.233","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965444","Screening","3","Date of Visit","32375566","0","02 Mar 2026 12:48:21:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260302 12:48:21.227","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2989688","Week I-0 (1)","7","Date of Visit","32706051","0","09 Mar 2026 10:14:05:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260309 10:14:05.780","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2990136","Week I-2 (1)","8","Date of Visit","32712620","0","27 Mar 2026 07:03:19:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260324 12:11:50.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975900","Screening","3","Date of Visit","32515721","0","04 Mar 2026 11:15:51:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260304 11:15:51.773","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3056606","Week I-0 (1)","7","Date of Visit","33592277","0","09 Apr 2026 09:45:00:203","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260409 09:45:00.203","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3056976","Week I-2 (1)","8","Date of Visit","33596878","0","23 Apr 2026 06:45:23:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:49:28.537","GMT","20260505 09:30:00.837","","" diff --git a/Medidata/downloads/Zpracovano/2026-05-29_16-50_EDC_UCO3001_CZE_ConcomitantTherapy_DataListing.csv b/Medidata/downloads/Zpracovano/2026-05-29_16-50_EDC_UCO3001_CZE_ConcomitantTherapy_DataListing.csv new file mode 100644 index 0000000..7d6405b --- /dev/null +++ b/Medidata/downloads/Zpracovano/2026-05-29_16-50_EDC_UCO3001_CZE_ConcomitantTherapy_DataListing.csv @@ -0,0 +1,91 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","31359736","1","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MEDROL","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","METHYLPREDNISOLONE","CMTRT_RXPREF","MEDROL [METHYLPREDNISOLONE]","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000496 01 001","CMTRT_RXPREF_CODE","000496 01 003","CMTRT_TRADE_NAME_CODE","Therapeutic or Diagnostic Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","16","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","05 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","13 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33076414","2","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","APAURIN","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","ANXIOLYTICS","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","DIAZEPAM","CMTRT_RXPREF","APAURIN","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05B","CMTRT_ATC3_CODE","N05BA","CMTRT_ATC4_CODE","000170 01 001","CMTRT_RXPREF_CODE","000170 01 016","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","‘ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","5 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","5 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33076455","3","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMAL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL HYDROCHLORIDE","CMTRT_RXPREF","TRAMAL","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 02 001","CMTRT_RXPREF_CODE","005992 02 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","‘ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","5 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","5 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33544926","4","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VENTOLIN","Medication or Therapy","RESPIRATORY SYSTEM","CMTRT_ATC1","DRUGS FOR OBSTRUCTIVE AIRWAY DISEASES","CMTRT_ATC2","ADRENERGICS FOR SYSTEMIC USE","CMTRT_ATC3","SELECTIVE BETA-2-ADRENORECEPTOR AGONISTS","CMTRT_ATC4","SALBUTAMOL","CMTRT_RXPREF","VENTOLIN [SALBUTAMOL]","CMTRT_TRADE_NAME","R","CMTRT_ATC1_CODE","R03","CMTRT_ATC2_CODE","R03C","CMTRT_ATC3_CODE","R03CC","CMTRT_ATC4_CODE","001395 01 001","CMTRT_RXPREF_CODE","001395 01 002","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#001 > ASTMA BRONCHIALE","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","100","Dose","Milligram per Kilogram","Dose Unit","Inhalant","Dose Form","Oral","Route","As Necessary","Frequency","UN UNK 1990","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33544975","5","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ASACOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","ASACOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ULCERATIVE COLITIS","If indication is Prophylaxis or Other, specify","1600","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","1 JUL 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33545029","6","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KALNORMIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","POTASSIUM","CMTRT_ATC3","POTASSIUM","CMTRT_ATC4","POTASSIUM CHLORIDE","CMTRT_RXPREF","KALNORMIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12B","CMTRT_ATC3_CODE","A12BA","CMTRT_ATC4_CODE","000314 02 001","CMTRT_RXPREF_CODE","000314 02 063","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HYPOKALEMIE DURING DIARHEA","If indication is Prophylaxis or Other, specify","1","Dose","Gram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","1 JUL 2025","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33596093","7","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","04 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","04 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","35395344","8","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","05 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","05 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","35395534","9","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MEDROL","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","METHYLPREDNISOLONE","CMTRT_RXPREF","MEDROL [METHYLPREDNISOLONE]","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000496 01 001","CMTRT_RXPREF_CODE","000496 01 003","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","12","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","13 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","19 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","35395558","10","27 May 2026 14:45:58:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MEDROL","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","METHYLPREDNISOLONE","CMTRT_RXPREF","MEDROL [METHYLPREDNISOLONE]","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000496 01 001","CMTRT_RXPREF_CODE","000496 01 003","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","10","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","20 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 14:45:58.977","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","32277658","1","27 May 2026 13:24:53:367","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","APAURIN","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","ANXIOLYTICS","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","DIAZEPAM","CMTRT_RXPREF","APAURIN","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05B","CMTRT_ATC3_CODE","N05BA","CMTRT_ATC4_CODE","000170 01 001","CMTRT_RXPREF_CODE","000170 01 016","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","18 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 13:24:53.367","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","33076365","2","27 May 2026 13:24:53:367","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMAL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL HYDROCHLORIDE","CMTRT_RXPREF","TRAMAL","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 02 001","CMTRT_RXPREF_CODE","005992 02 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","18 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 13:24:53.367","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","33606079","5","27 May 2026 13:24:53:370","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","17 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","17 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 13:24:53.370","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","33606357","6","27 May 2026 13:24:53:370","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","EUTHYROX","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","THYROID THERAPY","CMTRT_ATC2","THYROID PREPARATIONS","CMTRT_ATC3","THYROID HORMONES","CMTRT_ATC4","LEVOTHYROXINE SODIUM","CMTRT_RXPREF","EUTHYROX","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H03","CMTRT_ATC2_CODE","H03A","CMTRT_ATC3_CODE","H03AA","CMTRT_ATC4_CODE","000680 02 001","CMTRT_RXPREF_CODE","000680 02 007","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#001 > HYPOTYREOSIS","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","50","Dose","Microgram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2000","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 13:24:53.370","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","35393286","7","27 May 2026 13:24:53:883","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAMINE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAMINE","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 006","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Gram","Dose Unit","Suspension","Dose Form","Oral","Route","Daily","Frequency","13 OCT 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 13:24:53.883","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","204115","CZ100012003","6330","3116488","Concomitant Therapy","65","Concomitant Therapy","34392060","1","27 May 2026 15:27:08:090","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","12 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","12 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260527 15:27:08.090","","" +"CZE","9707","DD5-CZ10003","Gastromedic, Ltd.","210634","CZ100032001","6330","3189732","Concomitant Therapy","65","Concomitant Therapy","34994299","1","13 May 2026 13:34:23:947","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","IMASUP","Medication or Therapy","ANTINEOPLASTIC AND IMMUNOMODULATING AGENTS","CMTRT_ATC1","IMMUNOSUPPRESSANTS","CMTRT_ATC2","IMMUNOSUPPRESSANTS","CMTRT_ATC3","OTHER IMMUNOSUPPRESSANTS","CMTRT_ATC4","AZATHIOPRINE","CMTRT_RXPREF","IMASUP","CMTRT_TRADE_NAME","L","CMTRT_ATC1_CODE","L04","CMTRT_ATC2_CODE","L04A","CMTRT_ATC3_CODE","L04AX","CMTRT_ATC4_CODE","000015 01 001","CMTRT_RXPREF_CODE","000015 01 112","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","UN DEC 2021","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260513 13:34:23.947","","" +"CZE","9707","DD5-CZ10003","Gastromedic, Ltd.","210634","CZ100032001","6330","3189732","Concomitant Therapy","65","Concomitant Therapy","35026291","2","13 May 2026 13:34:23:947","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","SALOFALK","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","SALOFALK [MESALAZINE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 016","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3000","Dose","Milligram","Dose Unit","Powder","Dose Form","Oral","Route","Daily","Frequency","UN DEC 2017","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260513 13:34:23.947","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","2934306","Concomitant Therapy","65","Concomitant Therapy","31932382","0","23 May 2026 19:44:36:667","Tier 1","SDVTier","No","Were any medication(s)/therapy(ies) taken?","","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","","Dose","","Dose Unit","","Dose Form","","Route","","Frequency","","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260523 19:44:36.667","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","33869425","1","19 May 2026 13:24:22:407","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ANOPYRIN","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260519 13:24:22.407","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","35106828","2","19 May 2026 13:24:22:410","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","SORTIS","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","LIPID MODIFYING AGENTS","CMTRT_ATC2","LIPID MODIFYING AGENTS, PLAIN","CMTRT_ATC3","HMG COA REDUCTASE INHIBITORS","CMTRT_ATC4","ATORVASTATIN CALCIUM","CMTRT_RXPREF","SORTIS","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C10","CMTRT_ATC2_CODE","C10A","CMTRT_ATC3_CODE","C10AA","CMTRT_ATC4_CODE","013261 02 001","CMTRT_RXPREF_CODE","013261 02 002","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260519 13:24:22.410","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","35106829","3","19 May 2026 13:24:22:413","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","BISOPROLOL","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","BETA BLOCKING AGENTS","CMTRT_ATC2","BETA BLOCKING AGENTS","CMTRT_ATC3","BETA BLOCKING AGENTS, SELECTIVE","CMTRT_ATC4","BISOPROLOL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C07","CMTRT_ATC2_CODE","C07A","CMTRT_ATC3_CODE","C07AB","CMTRT_ATC4_CODE","008026 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260519 13:24:22.413","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","35106830","4","19 May 2026 13:24:22:413","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PERINDOPRIL","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","AGENTS ACTING ON THE RENIN-ANGIOTENSIN SYSTEM","CMTRT_ATC2","ACE INHIBITORS, PLAIN","CMTRT_ATC3","ACE INHIBITORS, PLAIN","CMTRT_ATC4","PERINDOPRIL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C09","CMTRT_ATC2_CODE","C09A","CMTRT_ATC3_CODE","C09AA","CMTRT_ATC4_CODE","007907 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260519 13:24:22.413","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","202008","CZ100092002","6330","3069538","Concomitant Therapy","65","Concomitant Therapy","33769101","1","23 Apr 2026 12:29:44:207","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ASACOL (MESALAZINE)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","ASACOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 002","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1600","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","10 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260423 12:29:44.207","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","202008","CZ100092002","6330","3069538","Concomitant Therapy","65","Concomitant Therapy","34071908","2","23 Apr 2026 12:29:44:457","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MUTAFLOR (ESCHERICHIA COLI)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC3","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC4","ESCHERICHIA COLI","CMTRT_RXPREF","MUTAFLOR","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07F","CMTRT_ATC3_CODE","A07FA","CMTRT_ATC4_CODE","005931 01 001","CMTRT_RXPREF_CODE","005931 01 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","SUPPLEMENTARY","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","10 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260423 12:29:44.457","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32821074","1","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAMIN P.O.","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAMINE","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 006","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3","Dose","Gram","Dose Unit","Not Applicable","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2019","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32849853","2","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","AZATHIOPRINUM (IMASUP)","Medication or Therapy","ANTINEOPLASTIC AND IMMUNOMODULATING AGENTS","CMTRT_ATC1","IMMUNOSUPPRESSANTS","CMTRT_ATC2","IMMUNOSUPPRESSANTS","CMTRT_ATC3","OTHER IMMUNOSUPPRESSANTS","CMTRT_ATC4","AZATHIOPRINE","CMTRT_RXPREF","IMASUP","CMTRT_TRADE_NAME","L","CMTRT_ATC1_CODE","L04","CMTRT_ATC2_CODE","L04A","CMTRT_ATC3_CODE","L04AX","CMTRT_ATC4_CODE","000015 01 001","CMTRT_RXPREF_CODE","000015 01 112","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","UN JUN 2022","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32849931","3","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ASACOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","ASACOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 002","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4000","Dose","Milligram","Dose Unit","Suspension","Dose Form","Rectal","Route","Three Times Weekly","Frequency","UN DEC 2021","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32850610","4","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","OMEPRAZOLUM (HELICID)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","OMEPRAZOLE","CMTRT_RXPREF","HELICID [OMEPRAZOLE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","006612 01 001","CMTRT_RXPREF_CODE","006612 01 033","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","WORSENING CONDITION SINCE LAST CHECK-UP AT ANOTHER HOSPITAL","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Twice Daily","Frequency","04 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32899566","5","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FERRINJECT 500MG (FERRUM 50MG)","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON, PARENTERAL PREPARATIONS","CMTRT_ATC4","FERRIC CARBOXYMALTOSE","CMTRT_RXPREF","FERRINJECT","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AC","CMTRT_ATC4_CODE","000235 23 001","CMTRT_RXPREF_CODE","000235 23 016","CMTRT_TRADE_NAME_CODE","Therapeutic or Diagnostic Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","500","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","18 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32899579","6","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VIGANTOL (COLECALCIFEROLUM)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","VITAMINS","CMTRT_ATC2","VITAMIN A AND D, INCL. COMBINATIONS OF THE TWO","CMTRT_ATC3","VITAMIN D AND ANALOGUES","CMTRT_ATC4","COLECALCIFEROL","CMTRT_RXPREF","VIGANTOL [COLECALCIFEROL]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A11","CMTRT_ATC2_CODE","A11C","CMTRT_ATC3_CODE","A11CC","CMTRT_ATC4_CODE","003185 01 001","CMTRT_RXPREF_CODE","003185 01 002","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","15000","Dose","International Unit","Dose Unit","Liquid","Dose Form","Oral","Route","Weekly","Frequency","UN UNK 2026","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32899796","7","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ALGIFEN","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#001 > 22APR2026 > ABDOMINAL PAIN WITH CRAMPS","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20-30","Dose","Drop","Dose Unit","Liquid","Dose Form","Oral","Route","As Necessary","Frequency","22 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","34928347","8","11 May 2026 11:34:10:387","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","NOVALGIN 500MG","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OTHER ANALGESICS AND ANTIPYRETICS","CMTRT_ATC3","PYRAZOLONES","CMTRT_ATC4","METAMIZOLE SODIUM","CMTRT_RXPREF","NOVALGIN [METAMIZOLE SODIUM]","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02B","CMTRT_ATC3_CODE","N02BB","CMTRT_ATC4_CODE","062767 04 001","CMTRT_RXPREF_CODE","062767 04 002","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#001 > 22APR2026 > ABDOMINAL PAIN WITH CRAMPS","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1-2","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","As Necessary","Frequency","07 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260511 11:34:10.387","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","32319356","1","21 May 2026 07:09:34:017","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PENTASA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","PENTASA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 004","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2","Dose","Gram","Dose Unit","For Suspension","Dose Form","Oral","Route","Twice Daily","Frequency","25 JUN 2019","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260521 07:09:34.017","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","33190707","2","21 May 2026 07:09:34:017","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE","CMTRT_RXPREF","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","119690 02 001","CMTRT_RXPREF_CODE","119690 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Other","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","11 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260521 07:09:34.017","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","33190713","3","21 May 2026 07:09:34:017","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","50","Dose","Microgram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","12 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","12 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260521 07:09:34.017","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","33190715","4","21 May 2026 07:09:34:197","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","3","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","12 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","12 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260521 07:09:34.197","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044281","Concomitant Therapy","65","Concomitant Therapy","33430625","1","25 May 2026 09:02:34:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE","CMTRT_RXPREF","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","119690 02 001","CMTRT_RXPREF_CODE","119690 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Other","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","20 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","20 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260525 09:02:34.977","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044281","Concomitant Therapy","65","Concomitant Therapy","35115169","2","25 May 2026 09:02:34:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","50","Dose","Microgram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","21 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","21 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260525 09:02:34.977","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044281","Concomitant Therapy","65","Concomitant Therapy","35115218","3","25 May 2026 09:02:34:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","3","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","21 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","21 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260525 09:02:34.977","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","202520","CZ100162001","6330","3079407","Concomitant Therapy","65","Concomitant Therapy","33923254","0","21 Apr 2026 13:37:28:920","Tier 1","SDVTier","No","Were any medication(s)/therapy(ies) taken?","","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","","Dose","","Dose Unit","","Dose Form","","Route","","Frequency","","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260421 13:37:28.920","","" +"CZE","9759","DD5-CZ10020","Fakultni Thomayerova nemocnice","201661","CZ100201001","6330","3061812","Concomitant Therapy","65","Concomitant Therapy","33654602","1","19 May 2026 15:07:23:010","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREDNISON","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","PREDNISON","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","000447 01 056","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","12 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","17 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260519 15:07:23.010","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","32275036","1","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KREON","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DIGESTIVES, INCL. ENZYMES","CMTRT_ATC2","DIGESTIVES, INCL. ENZYMES","CMTRT_ATC3","ENZYME PREPARATIONS","CMTRT_ATC4","PANCREATIN","CMTRT_RXPREF","KREON","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A09","CMTRT_ATC2_CODE","A09A","CMTRT_ATC3_CODE","A09AA","CMTRT_ATC4_CODE","000147 01 001","CMTRT_RXPREF_CODE","000147 01 013","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#006 > CHRONIC PANCREATITIS","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","25000","Dose","Unit","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","UN UNK 2007","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260507 08:22:55.643","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","33999090","2","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ELIQUIS","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTITHROMBOTIC AGENTS","CMTRT_ATC2","ANTITHROMBOTIC AGENTS","CMTRT_ATC3","DIRECT FACTOR XA INHIBITORS","CMTRT_ATC4","APIXABAN","CMTRT_RXPREF","ELIQUIS","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B01","CMTRT_ATC2_CODE","B01A","CMTRT_ATC3_CODE","B01AF","CMTRT_ATC4_CODE","062595 01 001","CMTRT_RXPREF_CODE","062595 01 002","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#007 > DEEP VEIN TROMBOSIS","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2.5","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","UN UNK 2021","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260507 08:22:55.643","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","33999365","3","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","3","Dose","Milligram","Dose Unit","Liquid","Dose Form","Intravenous","Route","Once","Frequency","16 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","16 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260507 08:22:55.643","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","34000164","4","07 May 2026 08:22:55:840","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","100","Dose","Microgram","Dose Unit","Liquid","Dose Form","Intravenous","Route","Once","Frequency","16 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","16 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260507 08:22:55.840","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","34000269","5","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Daily","Frequency","15 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","16 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260507 08:22:55.643","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","31215199","1","16 Mar 2026 14:28:08:803","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREDNISON","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","PREDNISON","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","000447 01 056","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","10","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","14 OCT 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.803","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538897","2","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","OMEGA 3 (EPA (EICOSAPENTAENOIC ACID, DOCOSAHEXAENOIC ACID,ALPHA-LINOLENIC ACID)","Medication or Therapy","VARIOUS","CMTRT_ATC1","GENERAL NUTRIENTS","CMTRT_ATC2","OTHER NUTRIENTS","CMTRT_ATC3","OTHER COMBINATIONS OF NUTRIENTS","CMTRT_ATC4","FISH OIL","CMTRT_RXPREF","OMEGA 3 [FISH OIL]","CMTRT_TRADE_NAME","V","CMTRT_ATC1_CODE","V06","CMTRT_ATC2_CODE","V06D","CMTRT_ATC3_CODE","V06DX","CMTRT_ATC4_CODE","013341 01 001","CMTRT_RXPREF_CODE","013341 01 002","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","FOOD SUPPLEMENT","If indication is Prophylaxis or Other, specify","1","Dose","Capsule","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","15 JAN 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538899","3","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","POLYMALTOSUM FERRICUM","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON TRIVALENT, ORAL PREPARATIONS","CMTRT_ATC4","IRON POLYSACCHARIDE COMPLEX","CMTRT_RXPREF","IRON POLYMALTOSE COMPLEX","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AB","CMTRT_ATC4_CODE","012145 01 001","CMTRT_RXPREF_CODE","012145 01 029","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","UC DISEASE","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","18 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538921","4","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAZIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAZIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 048","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Gram","Dose Unit","For Suspension","Dose Form","Oral","Route","Daily","Frequency","4 AUG 2023","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538922","5","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CHLORELLA","Medication or Therapy","VARIOUS","CMTRT_ATC1","UNSPECIFIED HERBAL AND TRADITIONAL MEDICINE","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","CHLORELLA SPP.","CMTRT_RXPREF","","CMTRT_TRADE_NAME","V","CMTRT_ATC1_CODE","V90","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","069111 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","FOOD SUPPLEMENT","If indication is Prophylaxis or Other, specify","5","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","15 JAN 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538923","6","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PANTOPRAZOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","PANTOPRAZOLE","CMTRT_RXPREF","PANTOPRAZOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","012632 01 001","CMTRT_RXPREF_CODE","012632 01 052","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","40","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","20 JUN 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538954","7","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VITAMINE D3","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","VITAMINS","CMTRT_ATC2","VITAMIN A AND D, INCL. COMBINATIONS OF THE TWO","CMTRT_ATC3","VITAMIN D AND ANALOGUES","CMTRT_ATC4","COLECALCIFEROL","CMTRT_RXPREF","VITAMINE D3","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A11","CMTRT_ATC2_CODE","A11C","CMTRT_ATC3_CODE","A11CC","CMTRT_ATC4_CODE","003185 01 001","CMTRT_RXPREF_CODE","003185 01 874","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1000","Dose","Other","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","26 NOV 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538963","8","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","GLYCEROL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OTHER DRUGS FOR CONSTIPATION","CMTRT_ATC4","GLYCEROL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AX","CMTRT_ATC4_CODE","002006 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2.5","Dose","Gram","Dose Unit","Suppository","Dose Form","Rectal","Route","As Necessary","Frequency","21 NOV 2023","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32539252","16","16 Mar 2026 14:28:08:813","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","1","Dose","Milliliter","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","18 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.813","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32555351","17","16 Mar 2026 14:28:08:813","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","18 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260316 14:28:08.813","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","31388290","1","15 Mar 2026 16:13:29:883","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","BUDESONID","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","BUDESONIDE","CMTRT_RXPREF","BUDESONID","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","006146 01 001","CMTRT_RXPREF_CODE","006146 01 047","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","9","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","26 FEB 2021","Start Date","","Was the medication/therapy taken prior to the study?","22 DEC 2025","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260315 16:13:29.883","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32391890","2","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAZIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAZIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 048","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3200","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","7 APR 2021","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32391895","3","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","BUDOSENID","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","BUDESONIDE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","006146 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","Suspension","Dose Form","Rectal","Route","Daily","Frequency","19 JUL 2025","Start Date","","Was the medication/therapy taken prior to the study?","22 DEC 2025","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32397940","4","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","RIFAXIMIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFECTIVES","CMTRT_ATC3","ANTIBIOTICS","CMTRT_ATC4","RIFAXIMIN","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07A","CMTRT_ATC3_CODE","A07AA","CMTRT_ATC4_CODE","010611 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","400","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","12 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","19 DEC 2025","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32397941","5","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ARMOLIPID PLUS (BERBERINE, RED YEAST RICE (MONACOLIN K), POLICOSANOL, FOLIC ACID, COENZYME Q10, ASTAXANTHIN)","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","LIPID MODIFYING AGENTS","CMTRT_ATC2","LIPID MODIFYING AGENTS, PLAIN","CMTRT_ATC3","OTHER LIPID MODIFYING AGENTS","CMTRT_ATC4","ASTAXANTHIN;BERBERINE;FOLIC ACID;MONASCUS PURPUREUS;POLICOSANOL;UBIDECARENONE","CMTRT_RXPREF","ARMOLIPID PLUS","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C10","CMTRT_ATC2_CODE","C10A","CMTRT_ATC3_CODE","C10AX","CMTRT_ATC4_CODE","139606 01 001","CMTRT_RXPREF_CODE","139606 01 002","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","SUPPORTING CHOLESTEROL LEVEL AND LIPID METABOLISM","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN MAR 2025","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32398237","6","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREEDNISON","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","22 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","21 JAN 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32398238","7","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PROBIOTICS","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC3","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC4","PROBIOTICS NOS","CMTRT_RXPREF","PROBIOTICS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07F","CMTRT_ATC3_CODE","A07FA","CMTRT_ATC4_CODE","075011 01 001","CMTRT_RXPREF_CODE","075011 01 023","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","UC DISEASE","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","20 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32943346","8","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32943403","9","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMADOL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32375556","1","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREDNISON","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","PREDNISON","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","000447 01 056","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","7.5","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","22 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32391901","2","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KALIUM CHLORATUM","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","POTASSIUM","CMTRT_ATC3","POTASSIUM","CMTRT_ATC4","POTASSIUM CHLORIDE","CMTRT_RXPREF","KALIUM CHLORATUM","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12B","CMTRT_ATC3_CODE","A12BA","CMTRT_ATC4_CODE","000314 02 001","CMTRT_RXPREF_CODE","000314 02 097","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","UCO DISEASE, PREVENTION","If indication is Prophylaxis or Other, specify","500","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","22 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32391909","3","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAZIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAZIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 048","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3000","Dose","Milligram","Dose Unit","Solution","Dose Form","Oral","Route","Daily","Frequency","9 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32395174","5","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PROBIOTICS","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC3","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC4","PROBIOTICS NOS","CMTRT_RXPREF","PROBIOTICS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07F","CMTRT_ATC3_CODE","A07FA","CMTRT_ATC4_CODE","075011 01 001","CMTRT_RXPREF_CODE","075011 01 023","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","20 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32395210","6","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMADOL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32398122","7","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32398155","8","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ARMOLIPID PLUS (BERBERINE, RED YEAST RICE (MONACOLIN K), POLICOSANOL, FOLIC ACID, COENZYME Q10, ASTAXANTHIN)","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","LIPID MODIFYING AGENTS","CMTRT_ATC2","LIPID MODIFYING AGENTS, PLAIN","CMTRT_ATC3","OTHER LIPID MODIFYING AGENTS","CMTRT_ATC4","ASTAXANTHIN;BERBERINE;FOLIC ACID;MONASCUS PURPUREUS;POLICOSANOL;UBIDECARENONE","CMTRT_RXPREF","ARMOLIPID PLUS","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C10","CMTRT_ATC2_CODE","C10A","CMTRT_ATC3_CODE","C10AX","CMTRT_ATC4_CODE","139606 01 001","CMTRT_RXPREF_CODE","139606 01 002","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","SUPPORTING CHOLESTEROL LEVEL AND LIPID METABOLISM","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN MAR 2025","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","33839101","9","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FORTRANS (MACROGOLUM(","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","MACROGOL 4000;POTASSIUM CHLORIDE;SODIUM BICARBONATE;SODIUM CHLORIDE;SODIUM SULFATE ANHYDROUS","CMTRT_RXPREF","FORTRANS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","109430 03 001","CMTRT_RXPREF_CODE","109430 03 005","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3","Dose","Sachet","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","10 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","10 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","33904837","10","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FORTRANS (MAKROGOL)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","MACROGOL 4000;POTASSIUM CHLORIDE;SODIUM BICARBONATE;SODIUM CHLORIDE;SODIUM SULFATE ANHYDROUS","CMTRT_RXPREF","FORTRANS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","109430 03 001","CMTRT_RXPREF_CODE","109430 03 005","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Sachet","Dose Unit","Solution","Dose Form","Oral","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197226","CZ100222004","6330","2969798","Concomitant Therapy","65","Concomitant Therapy","32431107","1","04 Mar 2026 20:42:21:217","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PANTOPRAZOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","PANTOPRAZOLE","CMTRT_RXPREF","PANTOPRAZOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","012632 01 001","CMTRT_RXPREF_CODE","012632 01 052","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","40","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2024","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260304 20:42:21.217","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","32515711","1","26 May 2026 12:25:03:760","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KALNORMIN (KALII CHLORIDUM(","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","POTASSIUM","CMTRT_ATC3","POTASSIUM","CMTRT_ATC4","POTASSIUM CHLORIDE","CMTRT_RXPREF","KALNORMIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12B","CMTRT_ATC3_CODE","A12BA","CMTRT_ATC4_CODE","000314 02 001","CMTRT_RXPREF_CODE","000314 02 063","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","5 JAN 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.760","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","32538733","2","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CALCIUM CARBONATE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","CALCIUM","CMTRT_ATC3","CALCIUM","CMTRT_ATC4","CALCIUM CARBONATE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12A","CMTRT_ATC3_CODE","A12AA","CMTRT_ATC4_CODE","073570 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","500","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","32538803","3","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VITAMINE D3","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","VITAMINS","CMTRT_ATC2","VITAMIN A AND D, INCL. COMBINATIONS OF THE TWO","CMTRT_ATC3","VITAMIN D AND ANALOGUES","CMTRT_ATC4","COLECALCIFEROL","CMTRT_RXPREF","VITAMINE D3","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A11","CMTRT_ATC2_CODE","A11C","CMTRT_ATC3_CODE","A11CC","CMTRT_ATC4_CODE","003185 01 001","CMTRT_RXPREF_CODE","003185 01 874","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","400","Dose","Other","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597152","4","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PROBIOTICS","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","OTHER ALIMENTARY TRACT AND METABOLISM PRODUCTS","CMTRT_ATC2","OTHER ALIMENTARY TRACT AND METABOLISM PRODUCTS","CMTRT_ATC3","VARIOUS ALIMENTARY TRACT AND METABOLISM PRODUCTS","CMTRT_ATC4","PROBIOTICS NOS","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A16","CMTRT_ATC2_CODE","A16A","CMTRT_ATC3_CODE","A16AX","CMTRT_ATC4_CODE","075011 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","1","Dose","Capsule","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","26 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597250","5","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PANTOPRAZOLE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","PANTOPRAZOLE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","012632 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#001 > 24MAR2026 > EPIGASTRIC PAIN","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","40","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Once","Frequency","24 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","24 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597931","6","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","1","Dose","Milliliter","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","1 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","1 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597936","7","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","1 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","1 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33839187","8","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA (MAKROGOL 4000 )","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Sachet","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","31 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","31 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33905279","9","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA (MAKROGOL 4000)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Sachet","Dose Unit","Solution","Dose Form","Oral","Route","Once","Frequency","1 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","1 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34065261","10","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ESOMEPRAZOLE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","ESOMEPRAZOLE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","014793 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#006 > 18APR2026 > ABDOMINAL PAIN","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","20 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","22 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.767","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34065517","11","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ESOMEPRAZOLE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","ESOMEPRAZOLE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","014793 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#006 > 18APR2026 > ABDOMINAL PAIN","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","23 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","5 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.767","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34627843","12","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FERRUM","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON TRIVALENT, ORAL PREPARATIONS","CMTRT_ATC4","IRON","CMTRT_RXPREF","FERRUM","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AB","CMTRT_ATC4_CODE","000235 01 001","CMTRT_RXPREF_CODE","000235 01 184","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","VITAMINE DUE TO UC DISEASE","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","1 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","26 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.767","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34630935","13","26 May 2026 12:25:04:040","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALASINE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3.2","Dose","Gram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","20 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:04.040","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34630936","14","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FERRUM","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON TRIVALENT, ORAL PREPARATIONS","CMTRT_ATC4","IRON","CMTRT_RXPREF","FERRUM","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AB","CMTRT_ATC4_CODE","000235 01 001","CMTRT_RXPREF_CODE","000235 01 184","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","VITAMINE DUE TO UC DISEASE","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","2 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/29/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260529 14:50:15.890","GMT","20260526 12:25:03.767","","" diff --git a/Medidata/downloads/Zpracovano/2026-05-30_07-15_EDC_UCO3001_CZE_DateofVisit_DataListing.csv b/Medidata/downloads/Zpracovano/2026-05-30_07-15_EDC_UCO3001_CZE_DateofVisit_DataListing.csv new file mode 100644 index 0000000..24f07bb --- /dev/null +++ b/Medidata/downloads/Zpracovano/2026-05-30_07-15_EDC_UCO3001_CZE_DateofVisit_DataListing.csv @@ -0,0 +1,54 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892067","Screening","3","Date of Visit","31359746","0","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260219 07:41:15.130","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2945834","Week I-2 (1)","8","Date of Visit","32101284","0","04 Mar 2026 09:29:40:097","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260304 09:29:40.097","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2976291","Week I-4 (1)","9","Date of Visit","32521333","0","18 Mar 2026 06:52:32:477","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","18 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260505 09:12:30.347","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","212080","CZ100012004","6330","3220128","Screening","3","Date of Visit","35406055","0","28 May 2026 07:55:01:110","Tier 5","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 MAY 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260528 07:55:01.110","","" +"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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260412 15:10:26.887","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","3060855","Week I-2 (1)","8","Date of Visit","33641968","0","12 Apr 2026 18:13:09:703","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","8 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260420 13:24:47.817","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997818","Screening","3","Date of Visit","32821084","0","12 Mar 2026 09:38:16:330","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","10 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260312 09:38:16.330","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3051358","Week I-0 (1)","7","Date of Visit","33524299","0","08 Apr 2026 06:12:47:737","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","07 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260408 06:12:47.737","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","3052881","Week I-2 (1)","8","Date of Visit","33545351","0","23 Apr 2026 11:57:45:937","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260309 11:03:26.887","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3027462","Week I-0 (1)","7","Date of Visit","33207977","0","26 Mar 2026 11:25:10:850","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","24 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260326 11:25:10.850","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3035611","Week I-2 (1)","8","Date of Visit","33313608","0","10 Apr 2026 08:08:17:787","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260410 08:08:17.787","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","3059227","Week I-4 (1)","9","Date of Visit","33624340","0","24 Apr 2026 08:57:18:310","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","21 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260424 08:57:18.310","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044287","Screening","3","Date of Visit","33430635","0","09 Apr 2026 09:17:41:950","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","01 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260421 09:22:29.297","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","202520","CZ100162001","6330","3220454","Week I-0 (1)","7","Date of Visit","35411085","0","28 May 2026 14:20:37:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","28 MAY 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260528 14:20:37.320","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","211989","CZ100162002","6330","3218006","Screening","3","Date of Visit","35379129","0","28 May 2026 14:15:14:770","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAY 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260528 14:15:14.770","","" +"CZE","9759","DD5-CZ10020","Fakultni Thomayerova nemocnice","201661","CZ100201001","6330","3061818","Screening","3","Date of Visit","33654612","0","15 Apr 2026 19:26:15:497","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","13 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260422 12:15:47.873","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","3051003","Week I-0 (1)","7","Date of Visit","33519073","0","28 Apr 2026 06:15:03:510","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","7 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260428 06:15:03.510","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","3079851","Week I-2 (1)","8","Date of Visit","33929727","0","28 Apr 2026 06:15:59:870","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","20 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260428 06:15:59.870","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880184","Screening","3","Date of Visit","31215209","0","06 Mar 2026 10:59:41:280","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","15 JAN 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260306 10:59:41.280","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894251","Screening","3","Date of Visit","31388300","0","27 Feb 2026 14:50:20:233","No Forms","SDVTier","Yes","Did this visit occur?","DISCONTINUING STUDY","Subjects Status","23 JAN 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260227 14:50:20.233","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965444","Screening","3","Date of Visit","32375566","0","02 Mar 2026 12:48:21:227","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","02 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260302 12:48:21.227","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2989688","Week I-0 (1)","7","Date of Visit","32706051","0","09 Mar 2026 10:14:05:780","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260309 10:14:05.780","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2990136","Week I-2 (1)","8","Date of Visit","32712620","0","27 Mar 2026 07:03:19:320","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","27 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260324 12:11:50.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975900","Screening","3","Date of Visit","32515721","0","04 Mar 2026 11:15:51:773","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","04 MAR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260304 11:15:51.773","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3056606","Week I-0 (1)","7","Date of Visit","33592277","0","09 Apr 2026 09:45:00:203","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","9 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260409 09:45:00.203","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","3056976","Week I-2 (1)","8","Date of Visit","33596878","0","23 Apr 2026 06:45:23:183","Tier 1","SDVTier","Yes","Did this visit occur?","CONTINUING","Subjects Status","22 APR 2026","Visit Start Date","Site Visit","Type of Contact","","Reason this visit did not occur","","AE log line, start date, and term","","If Other, specify","","Reason for the unscheduled visit","","Age at visit","","Instance Name","","VISDAT for CTMS","","INACT tracker (operational field)","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","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","CZE","All","All","All","Date of Visit","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:48.797","GMT","20260505 09:30:00.837","","" diff --git a/Medidata/downloads/Zpracovano/2026-05-30_07-15_EDC_UCO3001_CZE_TrialDispositionCompletion-Discontinuation_DataListing.csv b/Medidata/downloads/Zpracovano/2026-05-30_07-15_EDC_UCO3001_CZE_TrialDispositionCompletion-Discontinuation_DataListing.csv new file mode 100644 index 0000000..b24a2e4 --- /dev/null +++ b/Medidata/downloads/Zpracovano/2026-05-30_07-15_EDC_UCO3001_CZE_TrialDispositionCompletion-Discontinuation_DataListing.csv @@ -0,0 +1,4 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","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","CZE","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:08.790","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","CZE","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:08.790","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","CZE","All","All","All","Trial Disposition (Completion / Discontinuation)","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:15:08.790","GMT","20260324 12:12:25.007","","" diff --git a/Medidata/downloads/Zpracovano/2026-05-30_07-16_EDC_UCO3001_CZE_ConcomitantTherapy_DataListing.csv b/Medidata/downloads/Zpracovano/2026-05-30_07-16_EDC_UCO3001_CZE_ConcomitantTherapy_DataListing.csv new file mode 100644 index 0000000..eb3e82a --- /dev/null +++ b/Medidata/downloads/Zpracovano/2026-05-30_07-16_EDC_UCO3001_CZE_ConcomitantTherapy_DataListing.csv @@ -0,0 +1,91 @@ +"SiteGroupName","SiteID","SiteNumber","Site","SubjectID","Subject","CRFVersionID","InstanceID","InstanceName","FolderSeq","Page","RecordID","RecordPosition","LastModifiedDate","Field1Value","Field1Label","Field2Value","Field2Label","Field3Value","Field3Label","Field4Value","Field4Label","Field5Value","Field5Label","Field6Value","Field6Label","Field7Value","Field7Label","Field8Value","Field8Label","Field9Value","Field9Label","Field10Value","Field10Label","Field11Value","Field11Label","Field12Value","Field12Label","Field13Value","Field13Label","Field14Value","Field14Label","Field15Value","Field15Label","Field16Value","Field16Label","Field17Value","Field17Label","Field18Value","Field18Label","Field19Value","Field19Label","Field20Value","Field20Label","Field21Value","Field21Label","Field22Value","Field22Label","Field23Value","Field23Label","Field24Value","Field24Label","Field25Value","Field25Label","Field26Value","Field26Label","Field27Value","Field27Label","Field28Value","Field28Label","Field29Value","Field29Label","Field30Value","Field30Label","Field31Value","Field31Label","Field32Value","Field32Label","Field33Value","Field33Label","Field34Value","Field34Label","Field35Value","Field35Label","Field36Value","Field36Label","Field37Value","Field37Label","Field38Value","Field38Label","Field39Value","Field39Label","Field40Value","Field40Label","Field41Value","Field41Label","Field42Value","Field42Label","Field43Value","Field43Label","Field44Value","Field44Label","Field45Value","Field45Label","Field46Value","Field46Label","Field47Value","Field47Label","Field48Value","Field48Label","Field49Value","Field49Label","Field50Value","Field50Label","Field51Value","Field51Label","Field52Value","Field52Label","Field53Value","Field53Label","Field54Value","Field54Label","Field55Value","Field55Label","Field56Value","Field56Label","Field57Value","Field57Label","Field58Value","Field58Label","Field59Value","Field59Label","Field60Value","Field60Label","Field61Value","Field61Label","Field62Value","Field62Label","Field63Value","Field63Label","Field64Value","Field64Label","Field65Value","Field65Label","Field66Value","Field66Label","Field67Value","Field67Label","Field68Value","Field68Label","Field69Value","Field69Label","Field70Value","Field70Label","Field71Value","Field71Label","Field72Value","Field72Label","Field73Value","Field73Label","Field74Value","Field74Label","Field75Value","Field75Label","Field76Value","Field76Label","Field77Value","Field77Label","Field78Value","Field78Label","Field79Value","Field79Label","Field80Value","Field80Label","Field81Value","Field81Label","Field82Value","Field82Label","Field83Value","Field83Label","Field84Value","Field84Label","Field85Value","Field85Label","Field86Value","Field86Label","Field87Value","Field87Label","Field88Value","Field88Label","Field89Value","Field89Label","Field90Value","Field90Label","Field91Value","Field91Label","Field92Value","Field92Label","Field93Value","Field93Label","Field94Value","Field94Label","Field95Value","Field95Label","Field96Value","Field96Label","Field97Value","Field97Label","Field98Value","Field98Label","Field99Value","Field99Label","Field100Value","Field100Label","Field101Value","Field101Label","Field102Value","Field102Label","Field103Value","Field103Label","Field104Value","Field104Label","Field105Value","Field105Label","Field106Value","Field106Label","Field107Value","Field107Label","Field108Value","Field108Label","Field109Value","Field109Label","Field110Value","Field110Label","Field111Value","Field111Label","Field112Value","Field112Label","Field113Value","Field113Label","Field114Value","Field114Label","Field115Value","Field115Label","Field116Value","Field116Label","Field117Value","Field117Label","Field118Value","Field118Label","Field119Value","Field119Label","Field120Value","Field120Label","Field121Value","Field121Label","Field122Value","Field122Label","Field123Value","Field123Label","Field124Value","Field124Label","Field125Value","Field125Label","Field126Value","Field126Label","Field127Value","Field127Label","Field128Value","Field128Label","Field129Value","Field129Label","Field130Value","Field130Label","Field131Value","Field131Label","Field132Value","Field132Label","Field133Value","Field133Label","Field134Value","Field134Label","Field135Value","Field135Label","Field136Value","Field136Label","Field137Value","Field137Label","Field138Value","Field138Label","Field139Value","Field139Label","Field140Value","Field140Label","Field141Value","Field141Label","Field142Value","Field142Label","Field143Value","Field143Label","Field144Value","Field144Label","Field145Value","Field145Label","Field146Value","Field146Label","Field147Value","Field147Label","Field148Value","Field148Label","Field149Value","Field149Label","Field150Value","Field150Label","Field151Value","Field151Label","Field152Value","Field152Label","Field153Value","Field153Label","Field154Value","Field154Label","Field155Value","Field155Label","Field156Value","Field156Label","Field157Value","Field157Label","Field158Value","Field158Label","Field159Value","Field159Label","Field160Value","Field160Label","Field161Value","Field161Label","Field162Value","Field162Label","Field163Value","Field163Label","Field164Value","Field164Label","Field165Value","Field165Label","Field166Value","Field166Label","Field167Value","Field167Label","Field168Value","Field168Label","Field169Value","Field169Label","Field170Value","Field170Label","Field171Value","Field171Label","Field172Value","Field172Label","Field173Value","Field173Label","Field174Value","Field174Label","Field175Value","Field175Label","Field176Value","Field176Label","Field177Value","Field177Label","Field178Value","Field178Label","Field179Value","Field179Label","Field180Value","Field180Label","Field181Value","Field181Label","Field182Value","Field182Label","Field183Value","Field183Label","Field184Value","Field184Label","Field185Value","Field185Label","Field186Value","Field186Label","Field187Value","Field187Label","Field188Value","Field188Label","Field189Value","Field189Label","Field190Value","Field190Label","Field191Value","Field191Label","Field192Value","Field192Label","Field193Value","Field193Label","Field194Value","Field194Label","Field195Value","Field195Label","Field196Value","Field196Label","Field197Value","Field197Label","Field198Value","Field198Label","Field199Value","Field199Label","Field200Value","Field200Label","Field201Value","Field201Label","Field202Value","Field202Label","Field203Value","Field203Label","Field204Value","Field204Label","Field205Value","Field205Label","Field206Value","Field206Label","Field207Value","Field207Label","Field208Value","Field208Label","Field209Value","Field209Label","Field210Value","Field210Label","Field211Value","Field211Label","Field212Value","Field212Label","Field213Value","Field213Label","Field214Value","Field214Label","Field215Value","Field215Label","Field216Value","Field216Label","Field217Value","Field217Label","Field218Value","Field218Label","Field219Value","Field219Label","Field220Value","Field220Label","Field221Value","Field221Label","Field222Value","Field222Label","Field223Value","Field223Label","Field224Value","Field224Label","Field225Value","Field225Label","Field226Value","Field226Label","Field227Value","Field227Label","Field228Value","Field228Label","Field229Value","Field229Label","Field230Value","Field230Label","Field231Value","Field231Label","Field232Value","Field232Label","Field233Value","Field233Label","Field234Value","Field234Label","Field235Value","Field235Label","Field236Value","Field236Label","Field237Value","Field237Label","Field238Value","Field238Label","Field239Value","Field239Label","Field240Value","Field240Label","Field241Value","Field241Label","Field242Value","Field242Label","Field243Value","Field243Label","Field244Value","Field244Label","Field245Value","Field245Label","Field246Value","Field246Label","Field247Value","Field247Label","Field248Value","Field248Label","Field249Value","Field249Label","Field250Value","Field250Label","Field251Value","Field251Label","Field252Value","Field252Label","Field253Value","Field253Label","Field254Value","Field254Label","Field255Value","Field255Label","Field256Value","Field256Label","Field257Value","Field257Label","Field258Value","Field258Label","Field259Value","Field259Label","Field260Value","Field260Label","Field261Value","Field261Label","Field262Value","Field262Label","Field263Value","Field263Label","Field264Value","Field264Label","Field265Value","Field265Label","Field266Value","Field266Label","Field267Value","Field267Label","Field268Value","Field268Label","Field269Value","Field269Label","Field270Value","Field270Label","Field271Value","Field271Label","Field272Value","Field272Label","Field273Value","Field273Label","Field274Value","Field274Label","Field275Value","Field275Label","Field276Value","Field276Label","Field277Value","Field277Label","Field278Value","Field278Label","Field279Value","Field279Label","Field280Value","Field280Label","Field281Value","Field281Label","Field282Value","Field282Label","Field283Value","Field283Label","Field284Value","Field284Label","Field285Value","Field285Label","Field286Value","Field286Label","Field287Value","Field287Label","Field288Value","Field288Label","Field289Value","Field289Label","Field290Value","Field290Label","Field291Value","Field291Label","Field292Value","Field292Label","Field293Value","Field293Label","Field294Value","Field294Label","Field295Value","Field295Label","Field296Value","Field296Label","Field297Value","Field297Label","Field298Value","Field298Label","Field299Value","Field299Label","Field300Value","Field300Label","ErrorMsg","StudyName","SiteGroupParameter","SiteNumberParameter","SiteParameter","SubjectParameter","FormParameter","FieldParameter","FilterField","FilterValue","StartDateParameter","EndDateParameter","RunUser","VersionNumber","PrintDateTime","TimeZone","LastModifiedDateSortable","StartDateSortable","EndDateSortable" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","31359736","1","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MEDROL","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","METHYLPREDNISOLONE","CMTRT_RXPREF","MEDROL [METHYLPREDNISOLONE]","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000496 01 001","CMTRT_RXPREF_CODE","000496 01 003","CMTRT_TRADE_NAME_CODE","Therapeutic or Diagnostic Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","16","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","05 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","13 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33076414","2","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","APAURIN","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","ANXIOLYTICS","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","DIAZEPAM","CMTRT_RXPREF","APAURIN","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05B","CMTRT_ATC3_CODE","N05BA","CMTRT_ATC4_CODE","000170 01 001","CMTRT_RXPREF_CODE","000170 01 016","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","‘ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","5 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","5 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33076455","3","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMAL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL HYDROCHLORIDE","CMTRT_RXPREF","TRAMAL","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 02 001","CMTRT_RXPREF_CODE","005992 02 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","‘ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","5 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","5 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33544926","4","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VENTOLIN","Medication or Therapy","RESPIRATORY SYSTEM","CMTRT_ATC1","DRUGS FOR OBSTRUCTIVE AIRWAY DISEASES","CMTRT_ATC2","ADRENERGICS FOR SYSTEMIC USE","CMTRT_ATC3","SELECTIVE BETA-2-ADRENORECEPTOR AGONISTS","CMTRT_ATC4","SALBUTAMOL","CMTRT_RXPREF","VENTOLIN [SALBUTAMOL]","CMTRT_TRADE_NAME","R","CMTRT_ATC1_CODE","R03","CMTRT_ATC2_CODE","R03C","CMTRT_ATC3_CODE","R03CC","CMTRT_ATC4_CODE","001395 01 001","CMTRT_RXPREF_CODE","001395 01 002","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#001 > ASTMA BRONCHIALE","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","100","Dose","Milligram per Kilogram","Dose Unit","Inhalant","Dose Form","Oral","Route","As Necessary","Frequency","UN UNK 1990","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33544975","5","27 May 2026 14:45:58:703","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ASACOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","ASACOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ULCERATIVE COLITIS","If indication is Prophylaxis or Other, specify","1600","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","1 JUL 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.703","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33545029","6","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KALNORMIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","POTASSIUM","CMTRT_ATC3","POTASSIUM","CMTRT_ATC4","POTASSIUM CHLORIDE","CMTRT_RXPREF","KALNORMIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12B","CMTRT_ATC3_CODE","A12BA","CMTRT_ATC4_CODE","000314 02 001","CMTRT_RXPREF_CODE","000314 02 063","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HYPOKALEMIE DURING DIARHEA","If indication is Prophylaxis or Other, specify","1","Dose","Gram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","1 JUL 2025","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","33596093","7","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","04 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","04 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","35395344","8","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","05 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","05 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","35395534","9","27 May 2026 14:45:58:707","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MEDROL","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","METHYLPREDNISOLONE","CMTRT_RXPREF","MEDROL [METHYLPREDNISOLONE]","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000496 01 001","CMTRT_RXPREF_CODE","000496 01 003","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","12","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","13 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","19 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.707","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","193508","CZ100012001","6330","2892061","Concomitant Therapy","65","Concomitant Therapy","35395558","10","27 May 2026 14:45:58:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MEDROL","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","METHYLPREDNISOLONE","CMTRT_RXPREF","MEDROL [METHYLPREDNISOLONE]","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000496 01 001","CMTRT_RXPREF_CODE","000496 01 003","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","10","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","20 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 14:45:58.977","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","32277658","1","27 May 2026 13:24:53:367","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","APAURIN","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","ANXIOLYTICS","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","DIAZEPAM","CMTRT_RXPREF","APAURIN","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05B","CMTRT_ATC3_CODE","N05BA","CMTRT_ATC4_CODE","000170 01 001","CMTRT_RXPREF_CODE","000170 01 016","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","18 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 13:24:53.367","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","33076365","2","27 May 2026 13:24:53:367","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMAL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL HYDROCHLORIDE","CMTRT_RXPREF","TRAMAL","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 02 001","CMTRT_RXPREF_CODE","005992 02 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","18 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 13:24:53.367","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","33606079","5","27 May 2026 13:24:53:370","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","17 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","17 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 13:24:53.370","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","33606357","6","27 May 2026 13:24:53:370","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","EUTHYROX","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","THYROID THERAPY","CMTRT_ATC2","THYROID PREPARATIONS","CMTRT_ATC3","THYROID HORMONES","CMTRT_ATC4","LEVOTHYROXINE SODIUM","CMTRT_RXPREF","EUTHYROX","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H03","CMTRT_ATC2_CODE","H03A","CMTRT_ATC3_CODE","H03AA","CMTRT_ATC4_CODE","000680 02 001","CMTRT_RXPREF_CODE","000680 02 007","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#001 > HYPOTYREOSIS","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","50","Dose","Microgram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2000","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 13:24:53.370","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","196619","CZ100012002","6330","2957348","Concomitant Therapy","65","Concomitant Therapy","35393286","7","27 May 2026 13:24:53:883","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAMINE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAMINE","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 006","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Gram","Dose Unit","Suspension","Dose Form","Oral","Route","Daily","Frequency","13 OCT 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 13:24:53.883","","" +"CZE","9746","DD5-CZ10001","Centrum gastroenterologie a hepatologie s.r.o.","204115","CZ100012003","6330","3116488","Concomitant Therapy","65","Concomitant Therapy","34392060","1","27 May 2026 15:27:08:090","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Once","Frequency","12 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","12 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260527 15:27:08.090","","" +"CZE","9707","DD5-CZ10003","Gastromedic, Ltd.","210634","CZ100032001","6330","3189732","Concomitant Therapy","65","Concomitant Therapy","34994299","1","13 May 2026 13:34:23:947","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","IMASUP","Medication or Therapy","ANTINEOPLASTIC AND IMMUNOMODULATING AGENTS","CMTRT_ATC1","IMMUNOSUPPRESSANTS","CMTRT_ATC2","IMMUNOSUPPRESSANTS","CMTRT_ATC3","OTHER IMMUNOSUPPRESSANTS","CMTRT_ATC4","AZATHIOPRINE","CMTRT_RXPREF","IMASUP","CMTRT_TRADE_NAME","L","CMTRT_ATC1_CODE","L04","CMTRT_ATC2_CODE","L04A","CMTRT_ATC3_CODE","L04AX","CMTRT_ATC4_CODE","000015 01 001","CMTRT_RXPREF_CODE","000015 01 112","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","UN DEC 2021","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260513 13:34:23.947","","" +"CZE","9707","DD5-CZ10003","Gastromedic, Ltd.","210634","CZ100032001","6330","3189732","Concomitant Therapy","65","Concomitant Therapy","35026291","2","13 May 2026 13:34:23:947","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","SALOFALK","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","SALOFALK [MESALAZINE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 016","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3000","Dose","Milligram","Dose Unit","Powder","Dose Form","Oral","Route","Daily","Frequency","UN DEC 2017","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260513 13:34:23.947","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","195473","CZ100062001","6330","2934306","Concomitant Therapy","65","Concomitant Therapy","31932382","0","23 May 2026 19:44:36:667","Tier 1","SDVTier","No","Were any medication(s)/therapy(ies) taken?","","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","","Dose","","Dose Unit","","Dose Form","","Route","","Frequency","","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260523 19:44:36.667","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","33869425","1","19 May 2026 13:24:22:407","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ANOPYRIN","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260519 13:24:22.407","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","35106828","2","19 May 2026 13:24:22:410","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","SORTIS","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","LIPID MODIFYING AGENTS","CMTRT_ATC2","LIPID MODIFYING AGENTS, PLAIN","CMTRT_ATC3","HMG COA REDUCTASE INHIBITORS","CMTRT_ATC4","ATORVASTATIN CALCIUM","CMTRT_RXPREF","SORTIS","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C10","CMTRT_ATC2_CODE","C10A","CMTRT_ATC3_CODE","C10AA","CMTRT_ATC4_CODE","013261 02 001","CMTRT_RXPREF_CODE","013261 02 002","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260519 13:24:22.410","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","35106829","3","19 May 2026 13:24:22:413","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","BISOPROLOL","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","BETA BLOCKING AGENTS","CMTRT_ATC2","BETA BLOCKING AGENTS","CMTRT_ATC3","BETA BLOCKING AGENTS, SELECTIVE","CMTRT_ATC4","BISOPROLOL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C07","CMTRT_ATC2_CODE","C07A","CMTRT_ATC3_CODE","C07AB","CMTRT_ATC4_CODE","008026 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260519 13:24:22.413","","" +"CZE","9733","DD5-CZ10006","MUDr. Michal Konecny, Ph.D. s.r.o.","202354","CZ100062002","6330","3076144","Concomitant Therapy","65","Concomitant Therapy","35106830","4","19 May 2026 13:24:22:413","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PERINDOPRIL","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","AGENTS ACTING ON THE RENIN-ANGIOTENSIN SYSTEM","CMTRT_ATC2","ACE INHIBITORS, PLAIN","CMTRT_ATC3","ACE INHIBITORS, PLAIN","CMTRT_ATC4","PERINDOPRIL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C09","CMTRT_ATC2_CODE","C09A","CMTRT_ATC3_CODE","C09AA","CMTRT_ATC4_CODE","007907 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","5","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2016","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260519 13:24:22.413","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","202008","CZ100092002","6330","3069538","Concomitant Therapy","65","Concomitant Therapy","33769101","1","23 Apr 2026 12:29:44:207","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ASACOL (MESALAZINE)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","ASACOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 002","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1600","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","10 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260423 12:29:44.207","","" +"CZE","9974","DD5-CZ10009","PreventaMed, s.r.o.","202008","CZ100092002","6330","3069538","Concomitant Therapy","65","Concomitant Therapy","34071908","2","23 Apr 2026 12:29:44:457","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MUTAFLOR (ESCHERICHIA COLI)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC3","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC4","ESCHERICHIA COLI","CMTRT_RXPREF","MUTAFLOR","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07F","CMTRT_ATC3_CODE","A07FA","CMTRT_ATC4_CODE","005931 01 001","CMTRT_RXPREF_CODE","005931 01 002","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","SUPPLEMENTARY","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","10 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260423 12:29:44.457","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32821074","1","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAMIN P.O.","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAMINE","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 006","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3","Dose","Gram","Dose Unit","Not Applicable","Dose Form","Oral","Route","Daily","Frequency","UN UNK 2019","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32849853","2","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","AZATHIOPRINUM (IMASUP)","Medication or Therapy","ANTINEOPLASTIC AND IMMUNOMODULATING AGENTS","CMTRT_ATC1","IMMUNOSUPPRESSANTS","CMTRT_ATC2","IMMUNOSUPPRESSANTS","CMTRT_ATC3","OTHER IMMUNOSUPPRESSANTS","CMTRT_ATC4","AZATHIOPRINE","CMTRT_RXPREF","IMASUP","CMTRT_TRADE_NAME","L","CMTRT_ATC1_CODE","L04","CMTRT_ATC2_CODE","L04A","CMTRT_ATC3_CODE","L04AX","CMTRT_ATC4_CODE","000015 01 001","CMTRT_RXPREF_CODE","000015 01 112","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","50","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","UN JUN 2022","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32849931","3","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ASACOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","ASACOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 002","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4000","Dose","Milligram","Dose Unit","Suspension","Dose Form","Rectal","Route","Three Times Weekly","Frequency","UN DEC 2021","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32850610","4","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","OMEPRAZOLUM (HELICID)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","OMEPRAZOLE","CMTRT_RXPREF","HELICID [OMEPRAZOLE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","006612 01 001","CMTRT_RXPREF_CODE","006612 01 033","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","WORSENING CONDITION SINCE LAST CHECK-UP AT ANOTHER HOSPITAL","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Twice Daily","Frequency","04 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32899566","5","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FERRINJECT 500MG (FERRUM 50MG)","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON, PARENTERAL PREPARATIONS","CMTRT_ATC4","FERRIC CARBOXYMALTOSE","CMTRT_RXPREF","FERRINJECT","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AC","CMTRT_ATC4_CODE","000235 23 001","CMTRT_RXPREF_CODE","000235 23 016","CMTRT_TRADE_NAME_CODE","Therapeutic or Diagnostic Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","500","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","18 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32899579","6","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VIGANTOL (COLECALCIFEROLUM)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","VITAMINS","CMTRT_ATC2","VITAMIN A AND D, INCL. COMBINATIONS OF THE TWO","CMTRT_ATC3","VITAMIN D AND ANALOGUES","CMTRT_ATC4","COLECALCIFEROL","CMTRT_RXPREF","VIGANTOL [COLECALCIFEROL]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A11","CMTRT_ATC2_CODE","A11C","CMTRT_ATC3_CODE","A11CC","CMTRT_ATC4_CODE","003185 01 001","CMTRT_RXPREF_CODE","003185 01 002","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","15000","Dose","International Unit","Dose Unit","Liquid","Dose Form","Oral","Route","Weekly","Frequency","UN UNK 2026","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","32899796","7","11 May 2026 11:34:09:780","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ALGIFEN","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#001 > 22APR2026 > ABDOMINAL PAIN WITH CRAMPS","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20-30","Dose","Drop","Dose Unit","Liquid","Dose Form","Oral","Route","As Necessary","Frequency","22 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260511 11:34:09.780","","" +"CZE","9749","DD5-CZ10012","Fakultni nemocnice Brno","198479","CZ100122001","6330","2997812","Concomitant Therapy","65","Concomitant Therapy","34928347","8","11 May 2026 11:34:10:387","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","NOVALGIN 500MG","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OTHER ANALGESICS AND ANTIPYRETICS","CMTRT_ATC3","PYRAZOLONES","CMTRT_ATC4","METAMIZOLE SODIUM","CMTRT_RXPREF","NOVALGIN [METAMIZOLE SODIUM]","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02B","CMTRT_ATC3_CODE","N02BB","CMTRT_ATC4_CODE","062767 04 001","CMTRT_RXPREF_CODE","062767 04 002","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#001 > 22APR2026 > ABDOMINAL PAIN WITH CRAMPS","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1-2","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","As Necessary","Frequency","07 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260511 11:34:10.387","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","32319356","1","21 May 2026 07:09:34:017","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PENTASA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","PENTASA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 004","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2","Dose","Gram","Dose Unit","For Suspension","Dose Form","Oral","Route","Twice Daily","Frequency","25 JUN 2019","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260521 07:09:34.017","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","33190707","2","21 May 2026 07:09:34:017","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE","CMTRT_RXPREF","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","119690 02 001","CMTRT_RXPREF_CODE","119690 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Other","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","11 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260521 07:09:34.017","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","33190713","3","21 May 2026 07:09:34:017","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","50","Dose","Microgram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","12 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","12 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260521 07:09:34.017","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","196757","CZ100132001","6330","2960283","Concomitant Therapy","65","Concomitant Therapy","33190715","4","21 May 2026 07:09:34:197","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","3","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","12 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","12 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260521 07:09:34.197","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044281","Concomitant Therapy","65","Concomitant Therapy","33430625","1","25 May 2026 09:02:34:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE","CMTRT_RXPREF","MOVIPREP [ASCORBIC ACID;MACROGOL 3350;POTASSIUM CHLORIDE;SODIUM ASCORBATE;SODIUM CHLORIDE;SODIUM SULFATE]","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","119690 02 001","CMTRT_RXPREF_CODE","119690 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Other","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","20 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","20 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260525 09:02:34.977","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044281","Concomitant Therapy","65","Concomitant Therapy","35115169","2","25 May 2026 09:02:34:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","50","Dose","Microgram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","21 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","21 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260525 09:02:34.977","","" +"CZE","9735","DD5-CZ10013","Vojenska nemocnice Brno","200793","CZ100132002","6330","3044281","Concomitant Therapy","65","Concomitant Therapy","35115218","3","25 May 2026 09:02:34:977","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY SEDATION","If indication is Prophylaxis or Other, specify","3","Dose","Milligram","Dose Unit","Injectable","Dose Form","Intravenous","Route","Once","Frequency","21 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","21 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260525 09:02:34.977","","" +"CZE","9705","DD5-CZ10016","Nemocnice Milosrdnych sester sv. Karla Boromejskeho v Praze","202520","CZ100162001","6330","3079407","Concomitant Therapy","65","Concomitant Therapy","33923254","0","21 Apr 2026 13:37:28:920","Tier 1","SDVTier","No","Were any medication(s)/therapy(ies) taken?","","Medication or Therapy","","CMTRT_ATC1","","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","","CMTRT_RXPREF","","CMTRT_TRADE_NAME","","CMTRT_ATC1_CODE","","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","","Dose","","Dose Unit","","Dose Form","","Route","","Frequency","","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260421 13:37:28.920","","" +"CZE","9759","DD5-CZ10020","Fakultni Thomayerova nemocnice","201661","CZ100201001","6330","3061812","Concomitant Therapy","65","Concomitant Therapy","33654602","1","19 May 2026 15:07:23:010","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREDNISON","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","PREDNISON","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","000447 01 056","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","12 MAY 2026","Start Date","","Was the medication/therapy taken prior to the study?","17 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260519 15:07:23.010","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","32275036","1","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KREON","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DIGESTIVES, INCL. ENZYMES","CMTRT_ATC2","DIGESTIVES, INCL. ENZYMES","CMTRT_ATC3","ENZYME PREPARATIONS","CMTRT_ATC4","PANCREATIN","CMTRT_RXPREF","KREON","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A09","CMTRT_ATC2_CODE","A09A","CMTRT_ATC3_CODE","A09AA","CMTRT_ATC4_CODE","000147 01 001","CMTRT_RXPREF_CODE","000147 01 013","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#006 > CHRONIC PANCREATITIS","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","25000","Dose","Unit","Dose Unit","Tablet","Dose Form","Oral","Route","Three Times Daily","Frequency","UN UNK 2007","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260507 08:22:55.643","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","33999090","2","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ELIQUIS","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTITHROMBOTIC AGENTS","CMTRT_ATC2","ANTITHROMBOTIC AGENTS","CMTRT_ATC3","DIRECT FACTOR XA INHIBITORS","CMTRT_ATC4","APIXABAN","CMTRT_RXPREF","ELIQUIS","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B01","CMTRT_ATC2_CODE","B01A","CMTRT_ATC3_CODE","B01AF","CMTRT_ATC4_CODE","062595 01 001","CMTRT_RXPREF_CODE","062595 01 002","CMTRT_TRADE_NAME_CODE","Medical History","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","#007 > DEEP VEIN TROMBOSIS","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2.5","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","UN UNK 2021","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260507 08:22:55.643","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","33999365","3","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","3","Dose","Milligram","Dose Unit","Liquid","Dose Form","Intravenous","Route","Once","Frequency","16 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","16 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260507 08:22:55.643","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","34000164","4","07 May 2026 08:22:55:840","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","ENDOSCOPY PROCEDURE","If indication is Prophylaxis or Other, specify","100","Dose","Microgram","Dose Unit","Liquid","Dose Form","Intravenous","Route","Once","Frequency","16 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","16 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260507 08:22:55.840","","" +"CZE","9709","DD5-CZ10021","Nemocnice Ceske Budejovice","196612","CZ100212001","6330","2957197","Concomitant Therapy","65","Concomitant Therapy","34000269","5","07 May 2026 08:22:55:643","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Liter","Dose Unit","Liquid","Dose Form","Oral","Route","Daily","Frequency","15 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","16 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260507 08:22:55.643","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","31215199","1","16 Mar 2026 14:28:08:803","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREDNISON","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","PREDNISON","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","000447 01 056","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","10","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","14 OCT 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.803","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538897","2","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","OMEGA 3 (EPA (EICOSAPENTAENOIC ACID, DOCOSAHEXAENOIC ACID,ALPHA-LINOLENIC ACID)","Medication or Therapy","VARIOUS","CMTRT_ATC1","GENERAL NUTRIENTS","CMTRT_ATC2","OTHER NUTRIENTS","CMTRT_ATC3","OTHER COMBINATIONS OF NUTRIENTS","CMTRT_ATC4","FISH OIL","CMTRT_RXPREF","OMEGA 3 [FISH OIL]","CMTRT_TRADE_NAME","V","CMTRT_ATC1_CODE","V06","CMTRT_ATC2_CODE","V06D","CMTRT_ATC3_CODE","V06DX","CMTRT_ATC4_CODE","013341 01 001","CMTRT_RXPREF_CODE","013341 01 002","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","FOOD SUPPLEMENT","If indication is Prophylaxis or Other, specify","1","Dose","Capsule","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","15 JAN 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538899","3","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","POLYMALTOSUM FERRICUM","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON TRIVALENT, ORAL PREPARATIONS","CMTRT_ATC4","IRON POLYSACCHARIDE COMPLEX","CMTRT_RXPREF","IRON POLYMALTOSE COMPLEX","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AB","CMTRT_ATC4_CODE","012145 01 001","CMTRT_RXPREF_CODE","012145 01 029","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","UC DISEASE","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","18 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538921","4","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAZIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAZIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 048","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Gram","Dose Unit","For Suspension","Dose Form","Oral","Route","Daily","Frequency","4 AUG 2023","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538922","5","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CHLORELLA","Medication or Therapy","VARIOUS","CMTRT_ATC1","UNSPECIFIED HERBAL AND TRADITIONAL MEDICINE","CMTRT_ATC2","","CMTRT_ATC3","","CMTRT_ATC4","CHLORELLA SPP.","CMTRT_RXPREF","","CMTRT_TRADE_NAME","V","CMTRT_ATC1_CODE","V90","CMTRT_ATC2_CODE","","CMTRT_ATC3_CODE","","CMTRT_ATC4_CODE","069111 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","FOOD SUPPLEMENT","If indication is Prophylaxis or Other, specify","5","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","15 JAN 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538923","6","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PANTOPRAZOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","PANTOPRAZOLE","CMTRT_RXPREF","PANTOPRAZOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","012632 01 001","CMTRT_RXPREF_CODE","012632 01 052","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","40","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","20 JUN 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538954","7","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VITAMINE D3","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","VITAMINS","CMTRT_ATC2","VITAMIN A AND D, INCL. COMBINATIONS OF THE TWO","CMTRT_ATC3","VITAMIN D AND ANALOGUES","CMTRT_ATC4","COLECALCIFEROL","CMTRT_RXPREF","VITAMINE D3","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A11","CMTRT_ATC2_CODE","A11C","CMTRT_ATC3_CODE","A11CC","CMTRT_ATC4_CODE","003185 01 001","CMTRT_RXPREF_CODE","003185 01 874","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1000","Dose","Other","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","26 NOV 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32538963","8","16 Mar 2026 14:28:08:810","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","GLYCEROL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OTHER DRUGS FOR CONSTIPATION","CMTRT_ATC4","GLYCEROL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AX","CMTRT_ATC4_CODE","002006 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2.5","Dose","Gram","Dose Unit","Suppository","Dose Form","Rectal","Route","As Necessary","Frequency","21 NOV 2023","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.810","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32539252","16","16 Mar 2026 14:28:08:813","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","1","Dose","Milliliter","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","18 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.813","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","192922","CZ100222001","6330","2880178","Concomitant Therapy","65","Concomitant Therapy","32555351","17","16 Mar 2026 14:28:08:813","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","18 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","18 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260316 14:28:08.813","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","31388290","1","15 Mar 2026 16:13:29:883","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","BUDESONID","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","BUDESONIDE","CMTRT_RXPREF","BUDESONID","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","006146 01 001","CMTRT_RXPREF_CODE","006146 01 047","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","9","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","26 FEB 2021","Start Date","","Was the medication/therapy taken prior to the study?","22 DEC 2025","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260315 16:13:29.883","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32391890","2","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAZIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAZIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 048","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3200","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","7 APR 2021","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32391895","3","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","BUDOSENID","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","CORTICOSTEROIDS ACTING LOCALLY","CMTRT_ATC4","BUDESONIDE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EA","CMTRT_ATC4_CODE","006146 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","Suspension","Dose Form","Rectal","Route","Daily","Frequency","19 JUL 2025","Start Date","","Was the medication/therapy taken prior to the study?","22 DEC 2025","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32397940","4","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","RIFAXIMIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFECTIVES","CMTRT_ATC3","ANTIBIOTICS","CMTRT_ATC4","RIFAXIMIN","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07A","CMTRT_ATC3_CODE","A07AA","CMTRT_ATC4_CODE","010611 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","400","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","12 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","19 DEC 2025","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32397941","5","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ARMOLIPID PLUS (BERBERINE, RED YEAST RICE (MONACOLIN K), POLICOSANOL, FOLIC ACID, COENZYME Q10, ASTAXANTHIN)","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","LIPID MODIFYING AGENTS","CMTRT_ATC2","LIPID MODIFYING AGENTS, PLAIN","CMTRT_ATC3","OTHER LIPID MODIFYING AGENTS","CMTRT_ATC4","ASTAXANTHIN;BERBERINE;FOLIC ACID;MONASCUS PURPUREUS;POLICOSANOL;UBIDECARENONE","CMTRT_RXPREF","ARMOLIPID PLUS","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C10","CMTRT_ATC2_CODE","C10A","CMTRT_ATC3_CODE","C10AX","CMTRT_ATC4_CODE","139606 01 001","CMTRT_RXPREF_CODE","139606 01 002","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","SUPPORTING CHOLESTEROL LEVEL AND LIPID METABOLISM","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN MAR 2025","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32398237","6","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREEDNISON","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","22 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","21 JAN 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32398238","7","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PROBIOTICS","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC3","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC4","PROBIOTICS NOS","CMTRT_RXPREF","PROBIOTICS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07F","CMTRT_ATC3_CODE","A07FA","CMTRT_ATC4_CODE","075011 01 001","CMTRT_RXPREF_CODE","075011 01 023","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","UC DISEASE","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","20 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32943346","8","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","193591","CZ100222002","6330","2894245","Concomitant Therapy","65","Concomitant Therapy","32943403","9","15 Mar 2026 16:13:29:207","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMADOL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","PREMEDICATION FOR THE COLONOSCOPY","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","For Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260315 16:13:29.207","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32375556","1","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PREDNISON","Medication or Therapy","SYSTEMIC HORMONAL PREPARATIONS, EXCL. SEX HORMONES AND INSULINS","CMTRT_ATC1","CORTICOSTEROIDS FOR SYSTEMIC USE","CMTRT_ATC2","CORTICOSTEROIDS FOR SYSTEMIC USE, PLAIN","CMTRT_ATC3","GLUCOCORTICOIDS","CMTRT_ATC4","PREDNISONE","CMTRT_RXPREF","PREDNISON","CMTRT_TRADE_NAME","H","CMTRT_ATC1_CODE","H02","CMTRT_ATC2_CODE","H02A","CMTRT_ATC3_CODE","H02AB","CMTRT_ATC4_CODE","000447 01 001","CMTRT_RXPREF_CODE","000447 01 056","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","7.5","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","22 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32391901","2","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KALIUM CHLORATUM","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","POTASSIUM","CMTRT_ATC3","POTASSIUM","CMTRT_ATC4","POTASSIUM CHLORIDE","CMTRT_RXPREF","KALIUM CHLORATUM","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12B","CMTRT_ATC3_CODE","A12BA","CMTRT_ATC4_CODE","000314 02 001","CMTRT_RXPREF_CODE","000314 02 097","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","UCO DISEASE, PREVENTION","If indication is Prophylaxis or Other, specify","500","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","22 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32391909","3","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALAZIN","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","MESALAZIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","007476 01 048","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3000","Dose","Milligram","Dose Unit","Solution","Dose Form","Oral","Route","Daily","Frequency","9 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32395174","5","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PROBIOTICS","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC3","ANTIDIARRHEAL MICROORGANISMS","CMTRT_ATC4","PROBIOTICS NOS","CMTRT_RXPREF","PROBIOTICS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07F","CMTRT_ATC3_CODE","A07FA","CMTRT_ATC4_CODE","075011 01 001","CMTRT_RXPREF_CODE","075011 01 023","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","20 DEC 2025","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32395210","6","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","TRAMADOL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANALGESICS","CMTRT_ATC2","OPIOIDS","CMTRT_ATC3","OTHER OPIOIDS","CMTRT_ATC4","TRAMADOL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N02","CMTRT_ATC2_CODE","N02A","CMTRT_ATC3_CODE","N02AX","CMTRT_ATC4_CODE","005992 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","100","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32398122","7","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","32398155","8","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ARMOLIPID PLUS (BERBERINE, RED YEAST RICE (MONACOLIN K), POLICOSANOL, FOLIC ACID, COENZYME Q10, ASTAXANTHIN)","Medication or Therapy","CARDIOVASCULAR SYSTEM","CMTRT_ATC1","LIPID MODIFYING AGENTS","CMTRT_ATC2","LIPID MODIFYING AGENTS, PLAIN","CMTRT_ATC3","OTHER LIPID MODIFYING AGENTS","CMTRT_ATC4","ASTAXANTHIN;BERBERINE;FOLIC ACID;MONASCUS PURPUREUS;POLICOSANOL;UBIDECARENONE","CMTRT_RXPREF","ARMOLIPID PLUS","CMTRT_TRADE_NAME","C","CMTRT_ATC1_CODE","C10","CMTRT_ATC2_CODE","C10A","CMTRT_ATC3_CODE","C10AX","CMTRT_ATC4_CODE","139606 01 001","CMTRT_RXPREF_CODE","139606 01 002","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","SUPPORTING CHOLESTEROL LEVEL AND LIPID METABOLISM","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","UN MAR 2025","Start Date","Yes","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","33839101","9","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FORTRANS (MACROGOLUM(","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","MACROGOL 4000;POTASSIUM CHLORIDE;SODIUM BICARBONATE;SODIUM CHLORIDE;SODIUM SULFATE ANHYDROUS","CMTRT_RXPREF","FORTRANS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","109430 03 001","CMTRT_RXPREF_CODE","109430 03 005","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3","Dose","Sachet","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","10 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","10 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","196997","CZ100222003","6330","2965438","Concomitant Therapy","65","Concomitant Therapy","33904837","10","06 May 2026 13:29:11:913","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FORTRANS (MAKROGOL)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","MACROGOL 4000;POTASSIUM CHLORIDE;SODIUM BICARBONATE;SODIUM CHLORIDE;SODIUM SULFATE ANHYDROUS","CMTRT_RXPREF","FORTRANS","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","109430 03 001","CMTRT_RXPREF_CODE","109430 03 005","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","1","Dose","Sachet","Dose Unit","Solution","Dose Form","Oral","Route","Once","Frequency","11 FEB 2026","Start Date","","Was the medication/therapy taken prior to the study?","11 FEB 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260506 13:29:11.913","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197226","CZ100222004","6330","2969798","Concomitant Therapy","65","Concomitant Therapy","32431107","1","04 Mar 2026 20:42:21:217","No Forms","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PANTOPRAZOL","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","PANTOPRAZOLE","CMTRT_RXPREF","PANTOPRAZOL","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","012632 01 001","CMTRT_RXPREF_CODE","012632 01 052","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","40","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2024","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260304 20:42:21.217","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","32515711","1","26 May 2026 12:25:03:760","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","KALNORMIN (KALII CHLORIDUM(","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","POTASSIUM","CMTRT_ATC3","POTASSIUM","CMTRT_ATC4","POTASSIUM CHLORIDE","CMTRT_RXPREF","KALNORMIN","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12B","CMTRT_ATC3_CODE","A12BA","CMTRT_ATC4_CODE","000314 02 001","CMTRT_RXPREF_CODE","000314 02 063","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","5 JAN 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.760","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","32538733","2","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CALCIUM CARBONATE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","MINERAL SUPPLEMENTS","CMTRT_ATC2","CALCIUM","CMTRT_ATC3","CALCIUM","CMTRT_ATC4","CALCIUM CARBONATE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A12","CMTRT_ATC2_CODE","A12A","CMTRT_ATC3_CODE","A12AA","CMTRT_ATC4_CODE","073570 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","500","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","32538803","3","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","VITAMINE D3","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","VITAMINS","CMTRT_ATC2","VITAMIN A AND D, INCL. COMBINATIONS OF THE TWO","CMTRT_ATC3","VITAMIN D AND ANALOGUES","CMTRT_ATC4","COLECALCIFEROL","CMTRT_RXPREF","VITAMINE D3","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A11","CMTRT_ATC2_CODE","A11C","CMTRT_ATC3_CODE","A11CC","CMTRT_ATC4_CODE","003185 01 001","CMTRT_RXPREF_CODE","003185 01 874","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","400","Dose","Other","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","19 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597152","4","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PROBIOTICS","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","OTHER ALIMENTARY TRACT AND METABOLISM PRODUCTS","CMTRT_ATC2","OTHER ALIMENTARY TRACT AND METABOLISM PRODUCTS","CMTRT_ATC3","VARIOUS ALIMENTARY TRACT AND METABOLISM PRODUCTS","CMTRT_ATC4","PROBIOTICS NOS","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A16","CMTRT_ATC2_CODE","A16A","CMTRT_ATC3_CODE","A16AX","CMTRT_ATC4_CODE","075011 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","HEALTH PREVENTION","If indication is Prophylaxis or Other, specify","1","Dose","Capsule","Dose Unit","Capsule","Dose Form","Oral","Route","Daily","Frequency","26 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597250","5","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","PANTOPRAZOLE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","PANTOPRAZOLE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","012632 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#001 > 24MAR2026 > EPIGASTRIC PAIN","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","40","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Once","Frequency","24 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","24 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597931","6","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FENTANYL","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","ANESTHETICS","CMTRT_ATC2","ANESTHETICS, GENERAL","CMTRT_ATC3","OPIOID ANESTHETICS","CMTRT_ATC4","FENTANYL","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N01","CMTRT_ATC2_CODE","N01A","CMTRT_ATC3_CODE","N01AH","CMTRT_ATC4_CODE","001746 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","1","Dose","Milliliter","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","1 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","1 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33597936","7","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MIDAZOLAM","Medication or Therapy","NERVOUS SYSTEM","CMTRT_ATC1","PSYCHOLEPTICS","CMTRT_ATC2","HYPNOTICS AND SEDATIVES","CMTRT_ATC3","BENZODIAZEPINE DERIVATIVES","CMTRT_ATC4","MIDAZOLAM","CMTRT_RXPREF","","CMTRT_TRADE_NAME","N","CMTRT_ATC1_CODE","N05","CMTRT_ATC2_CODE","N05C","CMTRT_ATC3_CODE","N05CD","CMTRT_ATC4_CODE","006341 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Other","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","COLONOSCOPY","If indication is Prophylaxis or Other, specify","2","Dose","Milligram","Dose Unit","Solution","Dose Form","Intravenous","Route","Once","Frequency","1 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","1 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33839187","8","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA (MAKROGOL 4000 )","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Sachet","Dose Unit","For Solution","Dose Form","Oral","Route","Once","Frequency","31 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","31 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","33905279","9","26 May 2026 12:25:03:763","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","CLENSIA (MAKROGOL 4000)","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR CONSTIPATION","CMTRT_ATC2","DRUGS FOR CONSTIPATION","CMTRT_ATC3","OSMOTICALLY ACTING LAXATIVES","CMTRT_ATC4","CITRIC ACID;MACROGOL 4000;POTASSIUM CHLORIDE;SIMETICONE;SODIUM CHLORIDE;SODIUM CITRATE;SODIUM SULFATE","CMTRT_RXPREF","CLENSIA","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A06","CMTRT_ATC2_CODE","A06A","CMTRT_ATC3_CODE","A06AD","CMTRT_ATC4_CODE","147616 02 001","CMTRT_RXPREF_CODE","147616 02 002","CMTRT_TRADE_NAME_CODE","Bowel Preparation for Endoscopy Procedure","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","4","Dose","Sachet","Dose Unit","Solution","Dose Form","Oral","Route","Once","Frequency","1 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","1 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.763","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34065261","10","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ESOMEPRAZOLE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","ESOMEPRAZOLE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","014793 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#006 > 18APR2026 > ABDOMINAL PAIN","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Twice Daily","Frequency","20 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","22 APR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.767","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34065517","11","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","ESOMEPRAZOLE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","DRUGS FOR ACID RELATED DISORDERS","CMTRT_ATC2","DRUGS FOR PEPTIC ULCER AND GASTRO-OESOPHAGEAL REFLUX DISEASE (GORD)","CMTRT_ATC3","PROTON PUMP INHIBITORS","CMTRT_ATC4","ESOMEPRAZOLE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A02","CMTRT_ATC2_CODE","A02B","CMTRT_ATC3_CODE","A02BC","CMTRT_ATC4_CODE","014793 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Adverse Event","Indication","#006 > 18APR2026 > ABDOMINAL PAIN","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","20","Dose","Milligram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","23 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","5 MAY 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.767","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34627843","12","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FERRUM","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON TRIVALENT, ORAL PREPARATIONS","CMTRT_ATC4","IRON","CMTRT_RXPREF","FERRUM","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AB","CMTRT_ATC4_CODE","000235 01 001","CMTRT_RXPREF_CODE","000235 01 184","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","VITAMINE DUE TO UC DISEASE","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","1 MAR 2026","Start Date","","Was the medication/therapy taken prior to the study?","26 MAR 2026","End Date","Unchecked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.767","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34630935","13","26 May 2026 12:25:04:040","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","MESALASINE","Medication or Therapy","ALIMENTARY TRACT AND METABOLISM","CMTRT_ATC1","ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS","CMTRT_ATC2","INTESTINAL ANTIINFLAMMATORY AGENTS","CMTRT_ATC3","AMINOSALICYLIC ACID AND SIMILAR AGENTS","CMTRT_ATC4","MESALAZINE","CMTRT_RXPREF","","CMTRT_TRADE_NAME","A","CMTRT_ATC1_CODE","A07","CMTRT_ATC2_CODE","A07E","CMTRT_ATC3_CODE","A07EC","CMTRT_ATC4_CODE","007476 01 001","CMTRT_RXPREF_CODE","","CMTRT_TRADE_NAME_CODE","Trial Indication - Ulcerative Colitis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","If indication is Prophylaxis or Other, specify","3.2","Dose","Gram","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","20 SEP 2025","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:04.040","","" +"CZE","9710","DD5-CZ10022","Clinoxus s r o","197500","CZ100222005","6330","2975894","Concomitant Therapy","65","Concomitant Therapy","34630936","14","26 May 2026 12:25:03:767","Tier 1","SDVTier","Yes","Were any medication(s)/therapy(ies) taken?","FERRUM","Medication or Therapy","BLOOD AND BLOOD FORMING ORGANS","CMTRT_ATC1","ANTIANEMIC PREPARATIONS","CMTRT_ATC2","IRON PREPARATIONS","CMTRT_ATC3","IRON TRIVALENT, ORAL PREPARATIONS","CMTRT_ATC4","IRON","CMTRT_RXPREF","FERRUM","CMTRT_TRADE_NAME","B","CMTRT_ATC1_CODE","B03","CMTRT_ATC2_CODE","B03A","CMTRT_ATC3_CODE","B03AB","CMTRT_ATC4_CODE","000235 01 001","CMTRT_RXPREF_CODE","000235 01 184","CMTRT_TRADE_NAME_CODE","Prophylaxis","Indication","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","AE log line, start date, and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","","MH log line and term","VITAMINE DUE TO UC DISEASE","If indication is Prophylaxis or Other, specify","1","Dose","Tablet","Dose Unit","Tablet","Dose Form","Oral","Route","Daily","Frequency","2 APR 2026","Start Date","","Was the medication/therapy taken prior to the study?","","End Date","Checked","Is the medication/therapy still ongoing?","","Derived Indication","","NOW (operational field)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77242113UCO3001 - Prod","CZE","All","All","All","Concomitant Therapy","All","None","None","1/1/1950 12:00:00 AM","5/30/2026 11:59:00 PM","Vladimir Buzalka [Site Manager]","5.5 - 1.01","20260530 05:16:27.413","GMT","20260526 12:25:03.767","",""